mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 04:27:41 +08:00
22 lines
560 B
TypeScript
22 lines
560 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 } from './component';
|
|
import { VNode } from 'vue';
|
|
|
|
export declare class Empty extends AntdComponent {
|
|
/**
|
|
* customize description
|
|
* @type string | VNode
|
|
*/
|
|
description: string | VNode;
|
|
|
|
/**
|
|
* customize image. Will tread as image url when string provided
|
|
* @default false
|
|
* @type string | VNode
|
|
*/
|
|
image: string | VNode;
|
|
}
|