UNPKG

angular-animations

Version:
13 lines (12 loc) 566 B
import { AnimationTriggerMetadata } from '@angular/animations'; import { IAnimationOptions } from '../common/interfaces'; export interface IBounceOutLeftAnimationOptions extends IAnimationOptions { /** * Translate, possible units: px, %, em, rem, vw, vh * * Default: 2000px */ translate?: string; } export declare function bounceOutLeftAnimation(options?: IBounceOutLeftAnimationOptions): AnimationTriggerMetadata; export declare function bounceOutLeftOnLeaveAnimation(options?: IBounceOutLeftAnimationOptions): AnimationTriggerMetadata;