human/types/src/interpolate.d.ts

6 lines
165 B
TypeScript
Raw Normal View History

/**
* Module that interpolates results for smoother animations
*/
import type { Result } from './result';
export declare function calc(newResult: Result): Result;