eigent/package/@stackframe/stack-shared/dist/utils/math.d.ts
2025-08-12 01:16:39 +02: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 };