DefinitelyTyped/types/mumath/within.d.ts
2019-03-05 14:22:37 +11:00

7 lines
158 B
TypeScript

/**
* Whether element is between left & right, including.
*/
declare function within(value: number, left: number, right: number): number;
export = within;