type.d.ts 447 B

12345678910111213141516171819202122
  1. export interface TdTransitionProps {
  2. appear?: {
  3. type: BooleanConstructor;
  4. value?: boolean;
  5. };
  6. destoryOnHide?: {
  7. type: BooleanConstructor;
  8. value?: boolean;
  9. };
  10. durations?: {
  11. type: null;
  12. value?: number | number[];
  13. };
  14. name?: {
  15. type: StringConstructor;
  16. value?: string;
  17. };
  18. visible?: {
  19. type: BooleanConstructor;
  20. value?: boolean;
  21. };
  22. }