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)

30 lines (29 loc) 1.37 kB
import { MotionOptions } from '@ngverse/motion/core'; /** * jackInTheBox animation */ export declare const jackInTheBox: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationAnimateRefMetadata; /** * sets default values for the `jackInTheBox` animation */ export declare const setJackInTheBoxDefaults: (options: Partial<MotionOptions>) => MotionOptions & Partial<MotionOptions>; /** * jackInTheBox animation on :enter * @remarks triggerName: `jackInTheBoxOnEnter` */ export declare const jackInTheBoxOnEnter: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * jackInTheBox animation on :leave * @remarks triggerName: `jackInTheBoxOnLeave` */ export declare const jackInTheBoxOnLeave: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * jackInTheBox animation on :incr * @remarks triggerName: `jackInTheBoxOnIncr` */ export declare const jackInTheBoxOnIncr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * jackInTheBox animation on :decr * @remarks triggerName: `jackInTheBoxOnDecr` */ export declare const jackInTheBoxOnDecr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;