UNPKG

angular-animations

Version:
13 lines (12 loc) 579 B
import { AnimationTriggerMetadata } from '@angular/animations'; import { IAnimationOptions } from '../common/interfaces'; export interface IRotateOutDownLeftAnimationOptions extends IAnimationOptions { /** * Angle - number of degrees at which end animation. * * Default 45 */ degrees?: number; } export declare function rotateOutDownLeftAnimation(options?: IRotateOutDownLeftAnimationOptions): AnimationTriggerMetadata; export declare function rotateOutDownLeftOnLeaveAnimation(options?: IRotateOutDownLeftAnimationOptions): AnimationTriggerMetadata;