1 | import { VXEComponent } from './component'
|
2 | import { VxeOptionPropTypes } from './option'
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
9 |
|
10 | export const VxeOptgroup: VXEComponent<VxeOptgroupProps>
|
11 |
|
12 |
|
13 |
|
14 | export const Optgroup: typeof VxeOptgroup
|
15 |
|
16 | export type VxeOptgroupProps = {
|
17 | |
18 |
|
19 |
|
20 | label?: VxeOptionPropTypes.Label
|
21 | |
22 |
|
23 |
|
24 | visible?: VxeOptionPropTypes.Visible
|
25 | className?: VxeOptionPropTypes.ClassName
|
26 | |
27 |
|
28 |
|
29 | disabled?: VxeOptionPropTypes.Disabled
|
30 | }
|
31 |
|
32 | export interface VxeOptgroupSlots {
|
33 | |
34 |
|
35 |
|
36 | [key: string]: ((params: {
|
37 | [key: string]: any
|
38 | }) => any) | undefined
|
39 | }
|