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.26 kB
import { MotionOptions } from '@ngverse/motion/core'; /** * jello animation */ export declare const jello: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationAnimateRefMetadata; /** * sets default values for the `jello` animation */ export declare const setJelloDefaults: (options: Partial<MotionOptions>) => MotionOptions & Partial<MotionOptions>; /** * jello animation on :enter * @remarks triggerName: `jelloOnEnter` */ export declare const jelloOnEnter: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * jello animation on :leave * @remarks triggerName: `jelloOnLeave` */ export declare const jelloOnLeave: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * jello animation on :incr * @remarks triggerName: `jelloOnIncr` */ export declare const jelloOnIncr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata; /** * jello animation on :decr * @remarks triggerName: `jelloOnDecr` */ export declare const jelloOnDecr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;