type.d.ts 289 B

1234567891011121314
  1. export interface TdCellGroupProps {
  2. bordered?: {
  3. type: BooleanConstructor;
  4. value?: boolean;
  5. };
  6. theme?: {
  7. type: StringConstructor;
  8. value?: 'default' | 'card';
  9. };
  10. title?: {
  11. type: StringConstructor;
  12. value?: string;
  13. };
  14. }