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.

11 lines
404 B

4 months ago
/**
* <zh/>
*
* <en/> Judge whether the value is in the interval
* @param value - <zh/> | <en/> value
* @param min - <zh/> | <en/> minimum value
* @param max - <zh/> | <en/> maximum value
* @returns <zh/> | <en/> whether in the interval
*/
export declare function isBetween(value: number, min: number, max: number): boolean;