/** * Like the modulo operator (%), but works as expected for negative numbers. * @param num * @param modulus */ export declare const modulo: (num: number, modulus: number) => number; interface FilterFunction { (item: Type): boolean; } /** * Given an array of items and an iteration direction, return the next index in that direction when looping is allowed. * @param items * @param currentItemFilterFunction * @param moveForward */ export declare const loopWrapIndex: (items: Array, currentItemFilterFunction: FilterFunction, moveForward: boolean) => number; export {}; //# sourceMappingURL=math.d.ts.map