@compositive/foundation
Version:
Compositive framework foundation package.
29 lines • 1.46 kB
TypeScript
/** No easing, no acceleration */
export declare const linear: (t: number) => number;
/** Accelerating from zero velocity */
export declare const easeInQuad: (t: number) => number;
/** Decelerating to zero velocity */
export declare const easeOutQuad: (t: number) => number;
/** Acceleration until halfway, then deceleration */
export declare const easeInOutQuad: (t: number) => number;
/** Accelerating from zero velocity */
export declare const easeInCubic: (t: number) => number;
/** Decelerating to zero velocity */
export declare const easeOutCubic: (t: number) => number;
/** Acceleration until halfway, then deceleration */
export declare const easeInOutCubic: (t: number) => number;
/** Accelerating from zero velocity */
export declare const easeInQuart: (t: number) => number;
/** Decelerating to zero velocity */
export declare const easeOutQuart: (t: number) => number;
/** Acceleration until halfway, then deceleration */
export declare const easeInOutQuart: (t: number) => number;
/** Accelerating from zero velocity */
export declare const easeInQuint: (t: number) => number;
/** Decelerating to zero velocity */
export declare const easeOutQuint: (t: number) => number;
/** Acceleration until halfway, then deceleration */
export declare const easeInOutQuint: (t: number) => number;
/** Hyperbolic tangent, normalized to be bounded in the interval [0, 1] */
export declare const tanh: (t: number) => number;
//# sourceMappingURL=index.d.ts.map