DefinitelyTyped/types/clamp/index.d.ts
Adam Zerella 9582dc2bb7
Add type def for clamp (#43011)
Co-authored-by: Adam Zerella <adamzerella@users.noreply.github.com>
2020-03-14 19:10:24 -07:00

9 lines
302 B
TypeScript

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