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) 904 B
import { MotionOptions } from '@ngverse/motion/core'; /** * bounceInRight animation */ export declare const bounceInRight: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationAnimateRefMetadata; /** * sets default values for the `bounceInRight` animation */ export declare const setBounceInRightDefaults: (options: Partial<MotionOptions>) => MotionOptions & Partial<MotionOptions>; /** * bounceInRight animation on :enter * @remarks triggerName: `bounceInRightOnEnter` */ export declare const bounceInRightOnEnter: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * bounceInRight animation on :incr * @remarks triggerName: `bounceInRightOnIncr` */ export declare const bounceInRightOnIncr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;