-
Notifications
You must be signed in to change notification settings - Fork 51
/
global.d.ts
66 lines (58 loc) · 2.96 KB
/
global.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import type INoUiSlider from 'nouislider'
import { ICollectionItem } from './src/js/interfaces'
import { IStaticMethods } from './src/js/static/interfaces'
import type HSAccordion from './src/js/plugins/accordion'
import type HSCarousel from './src/js/plugins/carousel'
import type HSCollapse from './src/js/plugins/collapse'
import type HSComboBox from './src/js/plugins/combobox'
import type HSCopyMarkup from './src/js/plugins/copy-markup'
import type HSDataTable from './src/js/plugins/datatable'
import type HSDropdown from './src/js/plugins/dropdown'
import type HSFileUpload from './src/js/plugins/file-upload'
import type HSInputNumber from './src/js/plugins/input-number'
import type HSOverlay from './src/js/plugins/overlay'
import type HSPinInput from './src/js/plugins/pin-input'
import type HSRangeSlider from './src/js/plugins/range-slider'
import type HSRemoveElement from './src/js/plugins/remove-element'
import type HSScrollspy from './src/js/plugins/scrollspy'
import type HSSelect from './src/js/plugins/select'
import type HSStepper from './src/js/plugins/stepper'
import type HSStrongPassword from './src/js/plugins/strong-password'
import type HSTabs from './src/js/plugins/tabs'
import type HSToggleCount from './src/js/plugins/toggle-count'
import type HSTogglePassword from './src/js/plugins/toggle-password'
import type HSTooltip from './src/js/plugins/tooltip'
import type HSTreeView from './src/js/plugins/tree-view'
declare global {
var noUiSlider: typeof INoUiSlider
var Popper: {
createPopper: (referenceEl: Element, popperEl: HTMLElement, options?: any) => any
}
interface Window {
HS_CLIPBOARD_SELECTOR: string
HSStaticMethods: IStaticMethods
$hsCopyMarkupCollection: ICollectionItem<HSCopyMarkup>[]
$hsAccordionCollection: ICollectionItem<HSAccordion>[]
$hsCarouselCollection: ICollectionItem<HSCarousel>[]
$hsCollapseCollection: ICollectionItem<HSCollapse>[]
$hsComboBoxCollection: ICollectionItem<HSComboBox>[]
$hsDataTableCollection: ICollectionItem<HSDataTable>[]
$hsDropdownCollection: ICollectionItem<HSDropdown>[]
$hsFileUploadCollection: ICollectionItem<HSFileUpload>[]
$hsInputNumberCollection: { id: number; element: HSInputNumber }[]
$hsOverlayCollection: ICollectionItem<HSOverlay>[]
$hsPinInputCollection: ICollectionItem<HSPinInput>[]
$hsRemoveElementCollection: ICollectionItem<HSRemoveElement>[]
$hsRangeSliderCollection: ICollectionItem<HSRangeSlider>[]
$hsScrollspyCollection: ICollectionItem<HSScrollspy>[]
$hsSelectCollection: ICollectionItem<HSSelect>[]
$hsStepperCollection: ICollectionItem<HSStepper>[]
$hsStrongPasswordCollection: ICollectionItem<HSStrongPassword>[]
$hsTabsCollection: ICollectionItem<HSTabs>[]
$hsToggleCountCollection: ICollectionItem<HSToggleCount>[]
$hsTogglePasswordCollection: ICollectionItem<HSTogglePassword>[]
$hsTooltipCollection: ICollectionItem<HSTooltip>[]
$hsTreeViewCollection: ICollectionItem<HSTreeView>[]
}
}
export {}