mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-17 14:22:52 +00:00
7 lines
158 B
TypeScript
7 lines
158 B
TypeScript
/**
|
|
* Whether element is between left & right, including.
|
|
*/
|
|
declare function within(value: number, left: number, right: number): number;
|
|
|
|
export = within;
|