Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
9
node_modules/next/dist/server/route-definitions/app-page-route-definition.d.ts
generated
vendored
Normal file
9
node_modules/next/dist/server/route-definitions/app-page-route-definition.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
import type { RouteDefinition } from './route-definition';
|
||||
import { RouteKind } from '../route-kind';
|
||||
export interface AppPageRouteDefinition extends RouteDefinition<RouteKind.APP_PAGE> {
|
||||
readonly appPaths: ReadonlyArray<string>;
|
||||
}
|
||||
/**
|
||||
* Returns true if the given definition is an App Page route definition.
|
||||
*/
|
||||
export declare function isAppPageRouteDefinition(definition: RouteDefinition): definition is AppPageRouteDefinition;
|
||||
Loading…
Add table
Add a link
Reference in a new issue