11 lines
465 B
TypeScript
11 lines
465 B
TypeScript
import type { IAnimationStyles, IAnimationVariables } from '../types/IAnimationStyles';
|
|
/**
|
|
* Exporting raw duraction values and easing functions to be used in custom animations
|
|
*/
|
|
export declare const AnimationVariables: IAnimationVariables;
|
|
/**
|
|
* All Fabric standard animations, exposed as json objects referencing predefined
|
|
* keyframes. These objects can be mixed in with other class definitions.
|
|
*/
|
|
export declare const AnimationStyles: IAnimationStyles;
|