-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
Copy pathindex.ts
50 lines (47 loc) · 1.29 KB
/
index.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
import { CreateElement, VNode } from 'vue'
export type IRenderFn = (createElement: CreateElement) => VNode|VNode[]
export interface CreateAPIFn<O, V> {
(options: O, single?: boolean):V
(options: O, renderFn?: IRenderFn,):V
(options: O, renderFn: IRenderFn, single: boolean):V
}
// basic
export * from './Button'
export * from './Loading'
export * from './Tip'
export * from './Toolbar'
export * from './TabBar'
export * from './TabPanels'
export * from './Checkbox'
export * from './CheckboxGroup'
export * from './Radio'
export * from './RadioGroup'
export * from './Checker'
export * from './Input'
export * from './Textarea'
export * from './Select'
export * from './Switch'
export * from './Rate'
export * from './Validator'
export * from './Upload'
export * from './Form'
export * from './Drawer'
export * from './Scroll'
export * from './Slide'
export * from './IndexList'
export * from './Swipe'
export * from './Sticky'
export * from './ScrollNavBar'
export * from './ScrollNav'
export * from './RecycleList'
// create-API
export * from './Popup'
export * from './ActionSheet'
export * from './Toast'
export * from './Picker'
export * from './CascadePicker'
export * from './DatePicker'
export * from './TimePicker'
export * from './SegmentPicker'
export * from './Dialog'
export * from './ImagePreview'