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

29 lines
640 B
TypeScript
Raw Normal View History

2024-11-10 07:01:22 +00:00
import { IBaseProps } from '../_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>;