This repository has been archived on 2026-05-03. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
novarix-networks-homepage/node_modules/next/dist/server/app-render/segment-explorer-path.d.ts
T
Kismet Hasanaj 34dc9aec52 .
2026-05-02 20:07:02 +02:00

17 lines
1.2 KiB
TypeScript

import type { LoaderTree } from '../lib/app-dir-module';
export declare const BUILTIN_PREFIX = "__next_builtin__";
/**
* Normalize a file path to be relative to the project directory.
* Handles Turbopack [project] prefix and monorepo setups.
*/
export declare function normalizeFilePath(projectDir: string, filePath: string | undefined): string;
export declare function normalizeConventionFilePath(projectDir: string, conventionPath: string | undefined): string;
export declare const isNextjsBuiltinFilePath: (filePath: string) => boolean;
export declare const BOUNDARY_SUFFIX = "@boundary";
export declare function normalizeBoundaryFilename(filename: string): string;
export declare const BOUNDARY_PREFIX = "boundary:";
export declare function isBoundaryFile(fileType: string): boolean;
export declare function isBuiltinBoundaryFile(fileType: string): boolean;
export declare function getBoundaryOriginFileType(fileType: string): string;
export declare function getConventionPathByType(tree: LoaderTree, dir: string, conventionType: 'layout' | 'template' | 'page' | 'not-found' | 'error' | 'loading' | 'forbidden' | 'unauthorized' | 'defaultPage' | 'global-error'): string | undefined;