Files
DefinitelyTyped/types/clamp/index.d.ts
2021-12-23 15:16:35 -08:00

9 lines
308 B
TypeScript

// Type definitions for clamp 1.0
// Project: https://github.com/hughsk/clamp
// Definitions by: DefinitelyTyped <https://github.com/DefinitelyTyped>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
declare function clamp(value: number, min: number, max: number): number;
export = clamp;