type.d.ts 755 B

12345678910111213141516171819202122232425262728293031323334
  1. export interface TdTabBarProps {
  2. bordered?: {
  3. type: BooleanConstructor;
  4. value?: boolean;
  5. };
  6. fixed?: {
  7. type: BooleanConstructor;
  8. value?: boolean;
  9. };
  10. safeAreaInsetBottom?: {
  11. type: BooleanConstructor;
  12. value?: boolean;
  13. };
  14. shape?: {
  15. type: StringConstructor;
  16. value?: 'normal' | 'round';
  17. };
  18. split?: {
  19. type: BooleanConstructor;
  20. value?: boolean;
  21. };
  22. theme?: {
  23. type: StringConstructor;
  24. value?: 'normal' | 'tag';
  25. };
  26. value?: {
  27. type: null;
  28. value?: string | number | Array<string | number>;
  29. };
  30. defaultValue?: {
  31. type: null;
  32. value?: string | number | Array<string | number>;
  33. };
  34. }