UNPKG

@slidy/easing

Version:

Simple easing functions for inertion scrolling

8 lines (7 loc) 184 B
/** Easing function. * @param t value from 0 to 1 * @returns value from 0 to 1 * @default linear * @see https://easings.net */ export declare type Easing = (t: number) => number;