angular-animations
Version:
Angular Animations Utilities
13 lines (12 loc) • 579 B
TypeScript
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;