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