mirror of
https://github.com/chartjs/Chart.js.git
synced 2025-12-08 20:36:08 +00:00
* generate a flat helpers package * move helpers built files to dist * upgrade docs for flat helpers
6 lines
193 B
TypeScript
6 lines
193 B
TypeScript
import { EasingFunction } from '../core/interfaces';
|
|
|
|
export type EasingFunctionSignature = (t: number) => number;
|
|
|
|
export const easingEffects: Record<EasingFunction, EasingFunctionSignature>;
|