UNPKG

angular-animations

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