angular-animations
Version:
Angular Animations Utilities
13 lines (12 loc) • 1.21 kB
TypeScript
import { AnimationTriggerMetadata } from '@angular/animations';
import { IAnimationOptions } from '../common/interfaces';
export declare function collapseAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function collapseHorizontallyAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function expandOnEnterAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function expandRightOnEnterAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function collapseOnLeaveAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function collapseLeftOnLeaveAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function fadeInExpandOnEnterAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function fadeInExpandRightOnEnterAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function fadeOutCollapseOnLeaveAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;
export declare function fadeOutCollapseLeftOnLeaveAnimation(options?: IAnimationOptions): AnimationTriggerMetadata;