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

7 lines
121 B
TypeScript

/**
* Rounds value to optional step.
*/
declare function round(value: number, step?: number): number;
export = round;