type.d.ts 713 B

12345678910111213141516171819202122232425262728293031323334
  1. export interface TdCollapsePanelProps {
  2. content?: {
  3. type: StringConstructor;
  4. value?: string;
  5. };
  6. disabled?: {
  7. type: BooleanConstructor;
  8. value?: boolean;
  9. };
  10. expandIcon?: {
  11. type: BooleanConstructor;
  12. value?: boolean;
  13. };
  14. header?: {
  15. type: StringConstructor;
  16. value?: string;
  17. };
  18. headerLeftIcon?: {
  19. type: StringConstructor;
  20. value?: string;
  21. };
  22. headerRightContent?: {
  23. type: StringConstructor;
  24. value?: string;
  25. };
  26. placement?: {
  27. type: StringConstructor;
  28. value?: 'bottom' | 'top';
  29. };
  30. value?: {
  31. type: null;
  32. value?: string | number;
  33. };
  34. }