props.d.ts 448 B

1234567891011121314151617181920
  1. import { IBaseProps } from '../_util/base';
  2. /**
  3. * @description 空状态
  4. */
  5. export interface IEmptyProps extends IBaseProps {
  6. /**
  7. * @description 主文案
  8. */
  9. title: string;
  10. /**
  11. * @description 副文案
  12. */
  13. message: string;
  14. /**
  15. * @description 图片路径
  16. */
  17. image: string;
  18. }
  19. export declare const EmptyDefaultProps: Partial<IEmptyProps>;
  20. export declare const EmptyFunctionalProps: IEmptyProps;