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

7 lines
162 B
TypeScript

/**
* An enhanced mod-loop, like fmod — loops value within a frame.
*/
declare function mod(value: number, max: number, min?: number): number;
export = mod;