You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

7 lines
257 B

/**
* 返回一个 clamp 函数,将输入限定在指定范围之内
* @param a 范围的第一个端点
* @param b 范围的第二个端点
* @returns clamp 函数
*/
export declare function createClamp(a: number, b: number): (x: number) => number;