animation-consts.d.ts 807 B

12345678910111213141516171819202122232425
  1. /**
  2. * Use of this source code is governed by an MIT-style license that can be
  3. * found in the LICENSE file at https://github.com/NG-ZORRO/ng-zorro-antd/blob/master/LICENSE
  4. */
  5. export declare class AnimationDuration {
  6. static SLOW: string;
  7. static BASE: string;
  8. static FAST: string;
  9. }
  10. export declare class AnimationCurves {
  11. static EASE_BASE_OUT: string;
  12. static EASE_BASE_IN: string;
  13. static EASE_OUT: string;
  14. static EASE_IN: string;
  15. static EASE_IN_OUT: string;
  16. static EASE_OUT_BACK: string;
  17. static EASE_IN_BACK: string;
  18. static EASE_IN_OUT_BACK: string;
  19. static EASE_OUT_CIRC: string;
  20. static EASE_IN_CIRC: string;
  21. static EASE_IN_OUT_CIRC: string;
  22. static EASE_OUT_QUINT: string;
  23. static EASE_IN_QUINT: string;
  24. static EASE_IN_OUT_QUINT: string;
  25. }