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.ngverse.dev)

20 lines (19 loc) 874 B
import { MotionOptions } from '@ngverse/motion/core'; /** * backInLeft animation */ export declare const backInLeft: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationAnimateRefMetadata; /** * sets default values for the `backInLeft` animation */ export declare const setBackInLeftDefaults: (options: Partial<MotionOptions>) => MotionOptions & Partial<MotionOptions>; /** * backInLeft animation on :enter * @remarks triggerName: `backInLeftOnEnter` */ export declare const backInLeftOnEnter: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * backInLeft animation on :incr * @remarks triggerName: `backInLeftOnIncr` */ export declare const backInLeftOnIncr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;