-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglobal.d.ts
32 lines (31 loc) · 1.84 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
declare module '@vue/runtime-core' {
export interface GlobalComponents {
CdxButton: (typeof import('cdx-component'))['CdxButton'];
CdxCaptcha: (typeof import('cdx-component'))['CdxCaptcha'];
CdxCaptchaSlider: (typeof import('cdx-component'))['CdxCaptchaSlider'];
CdxCollapse: (typeof import('cdx-component'))['CdxCollapse'];
CdxCollapseItem: (typeof import('cdx-component'))['CdxCollapseItem'];
CdxCollapseTransition: (typeof import('cdx-component'))['CdxCollapseTransition'];
CdxColorPicker: (typeof import('cdx-component'))['CdxColorPicker'];
CdxCountTo: (typeof import('cdx-component'))['CdxCountTo'];
CdxDrawer: (typeof import('cdx-component'))['CdxDrawer'];
CdxElementSelect: (typeof import('cdx-component'))['CdxElementSelect'];
CdxElementSelectItem: (typeof import('cdx-component'))['CdxElementSelectItem'];
CdxIcon: (typeof import('cdx-component'))['CdxIcon'];
CdxLoading: (typeof import('cdx-component'))['CdxLoading'];
CdxMenu: (typeof import('cdx-component'))['CdxMenu'];
CdxMenuItem: (typeof import('cdx-component'))['CdxMenuItem'];
CdxModel: (typeof import('cdx-component'))['CdxModel'];
CdxOnlyChild: (typeof import('cdx-component'))['CdxOnlyChild'];
CdxOverlay: (typeof import('cdx-component'))['CdxOverlay'];
CdxPullRefresh: (typeof import('cdx-component'))['CdxPullRefresh'];
CdxResize: (typeof import('cdx-component'))['CdxResize'];
CdxScrollbar: (typeof import('cdx-component'))['CdxScrollbar'];
CdxSidebar: (typeof import('cdx-component'))['CdxSidebar'];
CdxTabs: (typeof import('cdx-component'))['CdxTabs'];
CdxTextEllipsis: (typeof import('cdx-component'))['CdxTextEllipsis'];
CdxTextHighlight: (typeof import('cdx-component'))['CdxTextHighlight'];
CdxTooltip: (typeof import('cdx-component'))['CdxTooltip'];
}
}
export {};