// Extend the global Jest namespace declare global { // eslint-disable-next-line @typescript-eslint/no-namespace namespace jest { interface Matchers { toBeWithinRange(a: number, b: number): R; } } } // Add any global test setup here export {}; // This file needs to be a module