thumb.d.ts 452 B

12345678910111213
  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. import { AnimationTriggerMetadata } from '@angular/animations';
  6. /**
  7. * a move and resize transition in the horizontal direction
  8. */
  9. export interface ThumbAnimationProps {
  10. transform: number;
  11. width: number;
  12. }
  13. export declare const thumbMotion: AnimationTriggerMetadata;