type.d.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. export interface TdCellProps {
  2. align?: {
  3. type: StringConstructor;
  4. value?: 'top' | 'middle' | 'bottom';
  5. };
  6. arrow?: {
  7. type: null;
  8. value?: boolean | object;
  9. };
  10. bordered?: {
  11. type: BooleanConstructor;
  12. value?: boolean;
  13. };
  14. description?: {
  15. type: StringConstructor;
  16. value?: string;
  17. };
  18. hover?: {
  19. type: BooleanConstructor;
  20. value?: boolean;
  21. };
  22. image?: {
  23. type: StringConstructor;
  24. value?: string;
  25. };
  26. jumpType?: {
  27. type: StringConstructor;
  28. value?: 'switchTab' | 'reLaunch' | 'redirectTo' | 'navigateTo';
  29. };
  30. leftIcon?: {
  31. type: null;
  32. value?: string | object;
  33. };
  34. note?: {
  35. type: StringConstructor;
  36. value?: string;
  37. };
  38. required?: {
  39. type: BooleanConstructor;
  40. value?: boolean;
  41. };
  42. rightIcon?: {
  43. type: null;
  44. value?: string | object;
  45. };
  46. title?: {
  47. type: StringConstructor;
  48. value?: string;
  49. };
  50. url?: {
  51. type: StringConstructor;
  52. value?: string;
  53. };
  54. }