UNPKG

@ngverse/motion

Version:

<p align="center"> <img src="https://github.com/ngverse/motion/blob/main/apps/docs/public/logo.png?raw=true" alt="Logo" width="200px" /> </p> `@ngverse/motion` is an Angular animations library, see more info on [link](https://motion-eosin.vercel.app)

20 lines (19 loc) 944 B
import { MotionOptions } from '@ngverse/motion/core'; /** * fadeOutBottomLeft animation */ export declare const fadeOutBottomLeft: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationAnimateRefMetadata; /** * sets default values for the `fadeOutBottomLeft` animation */ export declare const setFadeOutBottomLeftDefaults: (options: Partial<MotionOptions>) => MotionOptions & Partial<MotionOptions>; /** * fadeOutBottomLeft animation on :leave * @remarks triggerName: `fadeOutBottomLeftOnLeave` */ export declare const fadeOutBottomLeftOnLeave: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * fadeOutBottomLeft animation on :decr * @remarks triggerName: `fadeOutBottomLeftOnDecr` */ export declare const fadeOutBottomLeftOnDecr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;