File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ import { DatePicker } from './date-picker/date-picker';
26
26
import { Divider } from './divider' ;
27
27
import { Drawer } from './drawer' ;
28
28
import { Dropdown } from './dropdown/dropdown' ;
29
+ import { Empty } from './empty' ;
29
30
import { Form } from './form/form' ;
30
31
import { Icon } from './icon' ;
31
32
import { Input } from './input/input' ;
@@ -93,6 +94,7 @@ export {
93
94
DatePicker ,
94
95
Divider ,
95
96
Dropdown ,
97
+ Empty ,
96
98
Form ,
97
99
Icon ,
98
100
Input ,
Original file line number Diff line number Diff line change
1
+ // Project: https://github.com/vueComponent/ant-design-vue
2
+ // Definitions by: Svreber <https://github.com/Svreber>
3
+ // Definitions: https://github.com/vueComponent/ant-design-vue/types
4
+
5
+ import { AntdComponent } from './component' ;
6
+ import { VNode } from 'vue' ;
7
+
8
+ export declare class Empty extends AntdComponent {
9
+ /**
10
+ * customize description
11
+ * @type string | VNode
12
+ */
13
+ description : string | VNode ;
14
+
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
+
22
+ }
You can’t perform that action at this time.
0 commit comments