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