//#region src/utils/math.d.ts /** * Similar to the modulo operator, but always returns a positive number (even when the input is negative). */ declare function remainder(n: number, d: number): number; //#endregion export { remainder }; //# sourceMappingURL=math.d.ts.map