5 lines
140 B
TypeScript
5 lines
140 B
TypeScript
/**
|
|
* Clamps a number between a minimum and maximum value.
|
|
*/
|
|
export declare function clamp(n: number, min: number, max: number): number;
|