1234567891011121314151617181920212223 |
- import { IBaseProps } from '../_util/base';
- export interface IResultProps extends IBaseProps {
-
- type: 'success' | 'error' | 'info' | 'warning' | 'wait';
-
- image: string;
-
- title: string;
-
- message: string;
- }
- export declare const ResultDefaultProps: Partial<IResultProps>;
|