/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/server/route-matches
NameSizeModeActions
app-page-route-match.d.ts2250666editdlrm
app-page-route-match.js1300666editdlrm
app-page-route-match.js.map670666editdlrm
app-route-route-match.d.ts2290666editdlrm
app-route-route-match.js1310666editdlrm
app-route-route-match.js.map670666editdlrm
locale-route-match.d.ts2710666editdlrm
locale-route-match.js1280666editdlrm
locale-route-match.js.map670666editdlrm
pages-api-route-match.d.ts4970666editdlrm
pages-api-route-match.js4340666editdlrm
pages-api-route-match.js.map9520666editdlrm
pages-route-match.d.ts2350666editdlrm
pages-route-match.js1270666editdlrm
pages-route-match.js.map670666editdlrm
route-match.d.ts6400666editdlrm
route-match.js1210666editdlrm
route-match.js.map670666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/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; }