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.
9 lines (8 loc) • 607 B
TypeScript
import { type AnimationReferenceMetadata } from '../../animations/types.js';
export type Animation = 'grow' | 'fade' | 'slide' | 'none';
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)>>;