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