forked from jd-opensource/nutui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnutui.d.ts
63 lines (57 loc) · 2.65 KB
/
nutui.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
import Vue from 'vue';
declare class UIComponent extends Vue {
static install (vue: typeof Vue): void
}
export interface InstallationOptions {
locale?: any
lang?: any
}
export const version: string
export const locale: (l:any) => void
export function install (vue: typeof Vue, options: InstallationOptions): void
export declare class ActionSheet extends UIComponent {}
export declare class Badge extends UIComponent {}
export declare class Button extends UIComponent {}
export declare class ButtonGroup extends UIComponent {}
export declare class Calendar extends UIComponent {}
export declare class Cell extends UIComponent {}
export declare class CheckBox extends UIComponent {}
export declare class CheckBoxGroup extends UIComponent {}
export declare class Col extends UIComponent {}
export declare class DatePicker extends UIComponent {}
export declare class Dialog extends UIComponent {}
export declare class Flex extends UIComponent {}
export declare class Grid extends UIComponent {}
export declare class GridCol extends UIComponent {}
export declare class GridRow extends UIComponent {}
export declare class Icon extends UIComponent {}
export declare class ImagePicker extends UIComponent {}
export declare class Menu extends UIComponent {}
export declare class Navbar extends UIComponent {}
export declare class NoticeBar extends UIComponent {}
export declare class Picker extends UIComponent {}
export declare class Price extends UIComponent {}
export declare class Progress extends UIComponent {}
export declare class Radio extends UIComponent {}
export declare class RadioGroup extends UIComponent {}
export declare class Range extends UIComponent {}
export declare class Rate extends UIComponent {}
export declare class Row extends UIComponent {}
export declare class SearchBar extends UIComponent {}
export declare class ShortPassword extends UIComponent {}
export declare class Skeleton extends UIComponent {}
export declare class Slider extends UIComponent {}
export declare class Stepper extends UIComponent {}
export declare class Steps extends UIComponent {}
export declare class Swiper extends UIComponent {}
export declare class Switch extends UIComponent {}
export declare class Tab extends UIComponent {}
export declare class Tabbar extends UIComponent {}
export declare class TabPanel extends UIComponent {}
export declare class Toast extends UIComponent {}
export declare class BackTop extends UIComponent {}
export declare class Scroller extends UIComponent {}
export declare class CountDown extends UIComponent {}
export declare class Uploader extends UIComponent {}
export declare class TextInput extends UIComponent {}
export declare class Avatar extends UIComponent {}