2024-12-01 11:56:54 +00:00
|
|
|
import { IBaseProps } from '../_util/base';
|
2024-11-10 07:01:22 +00:00
|
|
|
/**
|
|
|
|
* @description 空状态
|
|
|
|
*/
|
|
|
|
export interface IEmptyProps extends IBaseProps {
|
2024-12-01 11:56:54 +00:00
|
|
|
/**
|
|
|
|
* @description 主文案
|
|
|
|
*/
|
|
|
|
title: string;
|
|
|
|
/**
|
|
|
|
* @description 副文案
|
|
|
|
*/
|
|
|
|
message: string;
|
|
|
|
/**
|
|
|
|
* @description 图片路径
|
|
|
|
*/
|
|
|
|
image: string;
|
2024-11-10 07:01:22 +00:00
|
|
|
}
|
|
|
|
export declare const EmptyDefaultProps: Partial<IEmptyProps>;
|
2024-12-01 11:56:54 +00:00
|
|
|
export declare const EmptyFunctionalProps: IEmptyProps;
|