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