type.d.ts 269 B

1234567891011121314
  1. export interface TdEmptyProps {
  2. description?: {
  3. type: StringConstructor;
  4. value?: string;
  5. };
  6. icon?: {
  7. type: null;
  8. value?: string | object;
  9. };
  10. image?: {
  11. type: StringConstructor;
  12. value?: string;
  13. };
  14. }