props.d.ts 666 B

1234567891011121314151617181920212223
  1. import { IBaseProps } from '../_util/base';
  2. /**
  3. * @description 结果页,用于展示用户操作后的信息反馈。
  4. */
  5. export interface IResultProps extends IBaseProps {
  6. /**
  7. * @description 内置类型 success=成功 error=错误/危险 info=信息提示 wait=等待处理
  8. */
  9. type: 'success' | 'error' | 'info' | 'warning' | 'wait';
  10. /**
  11. * @description 自定义图片,如果配置了 type, 则不生效
  12. */
  13. image: string;
  14. /**
  15. * @description 主文案
  16. */
  17. title: string;
  18. /**
  19. * @description 副文案
  20. */
  21. message: string;
  22. }
  23. export declare const ResultDefaultProps: Partial<IResultProps>;