angular-animations
Version:
Angular Animations Utilities
13 lines (12 loc) • 561 B
TypeScript
import { AnimationTriggerMetadata } from '@angular/animations';
import { IAnimationOptions } from '../common/interfaces';
export interface IBounceInLeftAnimationOptions extends IAnimationOptions {
/**
* Translate, possible units: px, %, em, rem, vw, vh
*
* Default: 3000px
*/
translate?: string;
}
export declare function bounceInLeftAnimation(options?: IBounceInLeftAnimationOptions): AnimationTriggerMetadata;
export declare function bounceInLeftOnEnterAnimation(options?: IBounceInLeftAnimationOptions): AnimationTriggerMetadata;