UNPKG

foxts

Version:

Opinionated collection of common TypeScript utils by @SukkaW

5 lines (3 loc) 169 B
declare function clamp(value: number, min: number, max: number): number; declare function clamp(min: number, max: number): (value: number) => number; export { clamp };