🌈 An enterprise-class UI components based on Ant Design and Vue. 🐜
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

25 lines
706 B

// 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;
};
}