eigent/package/@stackframe/stack-shared/dist/utils/math.d.mts
2025-07-29 23:57:16 +08:00

6 lines
196 B
TypeScript

/**
* 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;
export { remainder };