Chart.js/types/helpers/helpers.easing.d.ts
Samuel Gratzl 391e4b6f2e
flat helpers (#7806)
* generate a flat helpers package
* move helpers built files to dist
* upgrade docs for flat helpers
2020-09-28 09:11:55 -04:00

6 lines
193 B
TypeScript

import { EasingFunction } from '../core/interfaces';
export type EasingFunctionSignature = (t: number) => number;
export const easingEffects: Record<EasingFunction, EasingFunctionSignature>;