@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
TypeScript
import { MotionOptions } from '@ngverse/motion/core';
/**
* flash animation
*/
export declare const flash: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationAnimateRefMetadata;
/**
* sets default values for the `flash` animation
*/
export declare const setFlashDefaults: (options: Partial<MotionOptions>) => MotionOptions & Partial<MotionOptions>;
/**
* flash animation on :enter
* @remarks triggerName: `flashOnEnter`
*/
export declare const flashOnEnter: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;
/**
* flash animation on :leave
* @remarks triggerName: `flashOnLeave`
*/
export declare const flashOnLeave: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;
/**
* flash animation on :incr
* @remarks triggerName: `flashOnIncr`
*/
export declare const flashOnIncr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;
/**
* flash animation on :decr
* @remarks triggerName: `flashOnDecr`
*/
export declare const flashOnDecr: (options?: Partial<MotionOptions> | undefined) => import("@angular/animations").AnimationTriggerMetadata;