type.d.ts 394 B

123456789101112131415161718
  1. export interface TdDividerProps {
  2. align?: {
  3. type: StringConstructor;
  4. value?: 'left' | 'right' | 'center';
  5. };
  6. content?: {
  7. type: StringConstructor;
  8. value?: string;
  9. };
  10. dashed?: {
  11. type: BooleanConstructor;
  12. value?: boolean;
  13. };
  14. layout?: {
  15. type: StringConstructor;
  16. value?: 'horizontal' | 'vertical';
  17. };
  18. }