mirror of
https://github.com/chenasraf/DefinitelyTyped.git
synced 2026-05-18 01:49:01 +00:00
9 lines
308 B
TypeScript
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;
|