/opt/canhelp/node_modules/next/dist/server/route-matches
NameSizeModeActions
app-page-route-match.d.ts2250644editdlrm
app-page-route-match.js1300644editdlrm
app-page-route-match.js.map670644editdlrm
app-route-route-match.d.ts2290644editdlrm
app-route-route-match.js1310644editdlrm
app-route-route-match.js.map670644editdlrm
locale-route-match.d.ts2710644editdlrm
locale-route-match.js1280644editdlrm
locale-route-match.js.map670644editdlrm
pages-api-route-match.d.ts4970644editdlrm
pages-api-route-match.js4340644editdlrm
pages-api-route-match.js.map9520644editdlrm
pages-route-match.d.ts2350644editdlrm
pages-route-match.js1270644editdlrm
pages-route-match.js.map670644editdlrm
route-match.d.ts6400644editdlrm
route-match.js1210644editdlrm
route-match.js.map670644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/server/route-matches/route-match.d.ts (640B)
import type { Params } from '../request/params'; import type { RouteDefinition } from '../route-definitions/route-definition'; /** * RouteMatch is the resolved match for a given request. This will contain all * the dynamic parameters used for this route. */ export interface RouteMatch { readonly definition: D; /** * params when provided are the dynamic route parameters that were parsed from * the incoming request pathname. If a route match is returned without any * params, it should be considered a static route. */ readonly params: Params | undefined; }