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