jiaqingjiayi-xiaochengxu/甲情_甲意/node_modules/antd-mini/less/Result/props.d.ts

24 lines
666 B
TypeScript
Raw Normal View History

2024-11-15 03:51:28 +00:00
import { IBaseProps } from '../_util/base';
/**
* @description
*/
export interface IResultProps extends IBaseProps {
/**
* @description success= error=/ info= wait=
*/
type: 'success' | 'error' | 'info' | 'warning' | 'wait';
/**
* @description type
*/
image: string;
/**
* @description
*/
title: string;
/**
* @description
*/
message: string;
}
export declare const ResultDefaultProps: Partial<IResultProps>;