Files
Webklar.com/node_modules/next/dist/server/future/route-matches/app-page-route-match.d.ts
Basilosaurusrex f027651f9b main repo
2025-11-24 18:09:40 +01:00

11 lines
491 B
TypeScript

import type { RouteMatch } from './route-match';
import type { AppPageRouteDefinition } from '../route-definitions/app-page-route-definition';
export interface AppPageRouteMatch extends RouteMatch<AppPageRouteDefinition> {
}
/**
* Checks if the given match is an App Page route match.
* @param match the match to check
* @returns true if the match is an App Page route match, false otherwise
*/
export declare function isAppPageRouteMatch(match: RouteMatch): match is AppPageRouteMatch;