mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 12:37:42 +08:00
26 lines
706 B
TypeScript
26 lines
706 B
TypeScript
// Project: https://github.com/vueComponent/ant-design-vue
|
|
// Definitions by: Svreber <https://github.com/Svreber>
|
|
// Definitions: https://github.com/vueComponent/ant-design-vue/types
|
|
|
|
import { AntdComponent, AntdProps } from './component';
|
|
import { VNodeChild, CSSProperties } from 'vue';
|
|
|
|
export declare class Empty extends AntdComponent {
|
|
$props: AntdProps & {
|
|
/**
|
|
* customize description
|
|
* @type string | VNode
|
|
*/
|
|
description?: VNodeChild | JSX.Element;
|
|
|
|
/**
|
|
* customize image. Will tread as image url when string provided
|
|
* @default false
|
|
* @type string | VNode
|
|
*/
|
|
image?: VNodeChild | JSX.Element;
|
|
|
|
imageStyle?: CSSProperties | string;
|
|
};
|
|
}
|