UNPKG

@atlaskit/motion

Version:

A set of utilities to apply motion in your application.

6 lines (5 loc) 327 B
export type AnimationCurve = 'cubic-bezier(0.15,1,0.3,1)' | 'cubic-bezier(0.2,0,0,1)' | 'cubic-bezier(0.8,0,0,0.8)' | 'cubic-bezier(0,0,1,1)'; export declare const easeInOut: AnimationCurve; export declare const easeOut: AnimationCurve; export declare const easeIn: AnimationCurve; export declare const linear: AnimationCurve;