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';
2626import { Divider } from './divider' ;
2727import { Drawer } from './drawer' ;
2828import { Dropdown } from './dropdown/dropdown' ;
29+ import { Empty } from './empty' ;
2930import { Form } from './form/form' ;
3031import { Icon } from './icon' ;
3132import { Input } from './input/input' ;
@@ -93,6 +94,7 @@ export {
9394 DatePicker ,
9495 Divider ,
9596 Dropdown ,
97+ Empty ,
9698 Form ,
9799 Icon ,
98100 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