mirror of
https://github.com/FlipsideCrypto/DefinitelyTyped.git
synced 2026-02-06 10:56:53 +00:00
9 lines
302 B
TypeScript
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;
|