type.d.ts 473 B

12345678910111213141516171819202122
  1. export interface TdResultProps {
  2. description?: {
  3. type: StringConstructor;
  4. value?: string;
  5. };
  6. icon?: {
  7. type: null;
  8. value?: string | boolean | object;
  9. };
  10. image?: {
  11. type: StringConstructor;
  12. value?: string;
  13. };
  14. theme?: {
  15. type: StringConstructor;
  16. value?: 'default' | 'success' | 'warning' | 'error';
  17. };
  18. title?: {
  19. type: StringConstructor;
  20. value?: string;
  21. };
  22. }