igniteui-webcomponents
Version:
Ignite UI for Web Components is a complete library of UI components, giving you the ability to build modern web applications using encapsulation and the concept of reusable components in a dependency-free approach.
10 lines (9 loc) • 721 B
TypeScript
import { type AnimationReferenceMetadata } from '../../animations/types.js';
import type { HorizontalTransitionAnimation, StepperVerticalAnimation } from '../types.js';
export type Animation = StepperVerticalAnimation | HorizontalTransitionAnimation;
export type AnimationOptions = {
keyframe: KeyframeAnimationOptions;
step?: object;
};
export declare const bodyAnimations: Map<string, Map<string, ((options: AnimationOptions) => AnimationReferenceMetadata) | ((options: AnimationOptions) => AnimationReferenceMetadata)>>;
export declare const contentAnimations: Map<string, Map<string, ((options: AnimationOptions) => AnimationReferenceMetadata) | ((options: AnimationOptions) => AnimationReferenceMetadata)>>;