-
Notifications
You must be signed in to change notification settings - Fork 400
Expand file tree
/
Copy pathglobal.d.ts
More file actions
83 lines (78 loc) · 2.04 KB
/
global.d.ts
File metadata and controls
83 lines (78 loc) · 2.04 KB
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
import type INoUiSlider from "nouislider";
declare global {
var noUiSlider: typeof INoUiSlider;
var FloatingUIDOM: {
computePosition: (
reference: Element,
floating: HTMLElement,
options?: any,
) => Promise<{ x: number; y: number; placement: string }>;
autoUpdate: (
reference: Element,
floating: HTMLElement,
update: () => void,
) => () => void;
offset: (offset: number | [number, number]) => any;
flip: (options?: { fallbackPlacements?: string[] }) => any;
};
interface Window {
HS_CLIPBOARD_SELECTOR: string;
HSAccessibilityObserver: any;
HSStaticMethods: any;
HSCopyMarkup: any;
HSAccordion: any;
HSCarousel: any;
HSCollapse: any;
HSComboBox: any;
HSDataTable: any;
HSDatepicker: any;
HSDropdown: any;
HSFileUpload: any;
HSInputNumber: any;
HSLayoutSplitter: any;
HSOverlay: any;
HSPinInput: any;
HSRangeSlider: any;
HSRemoveElement: any;
HSScrollNav: any;
HSScrollspy: any;
HSSelect: any;
HSStepper: any;
HSStrongPassword: any;
HSTabs: any;
HSTextareaAutoHeight: any;
HSThemeSwitch: any;
HSToggleCount: any;
HSTogglePassword: any;
HSTooltip: any;
HSTreeView: any;
$hsCopyMarkupCollection: any[];
$hsAccordionCollection: any[];
$hsCarouselCollection: any[];
$hsCollapseCollection: any[];
$hsComboBoxCollection: any[];
$hsDataTableCollection: any[];
$hsDatepickerCollection: any[];
$hsDropdownCollection: any[];
$hsFileUploadCollection: any[];
$hsInputNumberCollection: any[];
$hsLayoutSplitterCollection: any[];
$hsOverlayCollection: any[];
$hsPinInputCollection: any[];
$hsRemoveElementCollection: any[];
$hsRangeSliderCollection: any[];
$hsScrollNavCollection: any[];
$hsScrollspyCollection: any[];
$hsSelectCollection: any[];
$hsStepperCollection: any[];
$hsStrongPasswordCollection: any[];
$hsTabsCollection: any[];
$hsTextareaAutoHeightCollection: any[];
$hsThemeSwitchCollection: any[];
$hsToggleCountCollection: any[];
$hsTogglePasswordCollection: any[];
$hsTooltipCollection: any[];
$hsTreeViewCollection: any[];
}
}
export {};