1export {}; 2declare global { 3 namespace jest { 4 interface Matchers<R> { 5 toHavePathname(pathname: string): R; 6 toHaveSegments(segments: string[]): R; 7 toHaveSearchParams(params: Record<string, string>): R; 8 } 9 } 10} 11