/opt/canhelp/node_modules/next/dist/experimental/testing/server
NameSizeModeActions
config-testing-utils.d.ts12090644editdlrm
config-testing-utils.js48030644editdlrm
config-testing-utils.js.map87300644editdlrm
index.d.ts1540644editdlrm
index.js12490644editdlrm
index.js.map4530644editdlrm
middleware-testing-utils.d.ts8490644editdlrm
middleware-testing-utils.js11740644editdlrm
middleware-testing-utils.js.map24550644editdlrm
utils.d.ts9310644editdlrm
utils.js16950644editdlrm
utils.js.map28160644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/experimental/testing/server/utils.d.ts (931B)
import type { IncomingHttpHeaders } from 'http'; import type { BaseNextRequest } from '../../../server/base-http'; import type { NextResponse } from '../../../server/web/exports'; export declare function constructRequest({ url, headers, cookies, }: { url: string; headers?: IncomingHttpHeaders; cookies?: Record; }): BaseNextRequest; /** * Returns the URL of the redirect if the response is a redirect response or * returns null if the response is not. */ export declare function getRedirectUrl(response: NextResponse): string | null; /** * Checks whether the provided response is a rewrite response to a different * URL. */ export declare function isRewrite(response: NextResponse): boolean; /** * Returns the URL of the response rewrite if the response is a rewrite, or * returns null if the response is not. */ export declare function getRewrittenUrl(response: NextResponse): string | null;