File tree Expand file tree Collapse file tree 1 file changed +20
-18
lines changed Expand file tree Collapse file tree 1 file changed +20
-18
lines changed Original file line number Diff line number Diff line change 5
5
import { AntdComponent } from './component' ;
6
6
7
7
export declare class Divider extends AntdComponent {
8
- /**
9
- * whether line is dashed
10
- * @default false
11
- * @type boolean
12
- */
13
- dashed : boolean ;
8
+ $props : {
9
+ /**
10
+ * whether line is dashed
11
+ * @default false
12
+ * @type boolean
13
+ */
14
+ dashed ?: boolean ;
14
15
15
- /**
16
- * position of title inside divider
17
- * @default 'center'
18
- * @type string
19
- */
20
- orientation : 'left' | 'right' | 'center' ;
16
+ /**
17
+ * position of title inside divider
18
+ * @default 'center'
19
+ * @type string
20
+ */
21
+ orientation ? : 'left' | 'right' | 'center' ;
21
22
22
- /**
23
- * direction type of divider
24
- * @default 'horizontal'
25
- * @type string
26
- */
27
- type : 'horizontal' | 'vertical' ;
23
+ /**
24
+ * direction type of divider
25
+ * @default 'horizontal'
26
+ * @type string
27
+ */
28
+ type ?: 'horizontal' | 'vertical' ;
29
+ } ;
28
30
}
You can’t perform that action at this time.
0 commit comments