parent
2b53c74f3a
commit
9f90d4cc55
|
@ -3,20 +3,23 @@
|
||||||
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
||||||
|
|
||||||
import { AntdComponent } from './component';
|
import { AntdComponent } from './component';
|
||||||
import { VNode } from 'vue';
|
import { VNodeChild, CSSProperties } from 'vue';
|
||||||
|
|
||||||
export declare class Empty extends AntdComponent {
|
export declare class Empty extends AntdComponent {
|
||||||
/**
|
$props: {
|
||||||
* customize description
|
/**
|
||||||
* @type string | VNode
|
* customize description
|
||||||
*/
|
* @type string | VNode
|
||||||
description: string | VNode;
|
*/
|
||||||
|
description?: VNodeChild | JSX.Element;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* customize image. Will tread as image url when string provided
|
* customize image. Will tread as image url when string provided
|
||||||
* @default false
|
* @default false
|
||||||
* @type string | VNode
|
* @type string | VNode
|
||||||
*/
|
*/
|
||||||
image: string | VNode;
|
image?: VNodeChild | JSX.Element;
|
||||||
imageStyle: object;
|
|
||||||
|
imageStyle?: CSSProperties | string;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue