File tree Expand file tree Collapse file tree 1 file changed +16
-13
lines changed Expand file tree Collapse file tree 1 file changed +16
-13
lines changed Original file line number Diff line number Diff line change 3
3
// Definitions: https://github.com/vueComponent/ant-design-vue/types
4
4
5
5
import { AntdComponent } from './component' ;
6
- import { VNode } from 'vue' ;
6
+ import { VNodeChild , CSSProperties } from 'vue' ;
7
7
8
8
export declare class Empty extends AntdComponent {
9
- /**
10
- * customize description
11
- * @type string | VNode
12
- */
13
- description : string | VNode ;
9
+ $props : {
10
+ /**
11
+ * customize description
12
+ * @type string | VNode
13
+ */
14
+ description ?: VNodeChild | JSX . Element ;
14
15
15
- /**
16
- * customize image. Will tread as image url when string provided
17
- * @default false
18
- * @type string | VNode
19
- */
20
- image : string | VNode ;
21
- imageStyle : object ;
16
+ /**
17
+ * customize image. Will tread as image url when string provided
18
+ * @default false
19
+ * @type string | VNode
20
+ */
21
+ image ?: VNodeChild | JSX . Element ;
22
+
23
+ imageStyle ?: CSSProperties | string ;
24
+ } ;
22
25
}
You can’t perform that action at this time.
0 commit comments