/home/techb158/balavpn.abdallabala.com/node_modules/next/dist/shared/lib/turbopack
NameSizeModeActions
compilation-events.d.ts4460666editdlrm
compilation-events.js15570666editdlrm
compilation-events.js.map21280666editdlrm
entry-key.d.ts6650666editdlrm
entry-key.js8000666editdlrm
entry-key.js.map13100666editdlrm
internal-error.d.ts8570666editdlrm
internal-error.js18250666editdlrm
internal-error.js.map27360666editdlrm
manifest-loader.d.ts29180666editdlrm
manifest-loader.js245170666editdlrm
manifest-loader.js.map443530666editdlrm
utils.d.ts15210666editdlrm
utils.js114850666editdlrm
utils.js.map174680666editdlrm
Edit: /home/techb158/balavpn.abdallabala.com/node_modules/next/dist/shared/lib/turbopack/utils.d.ts (1521B)
import type { Issue, StyledString, TurbopackResult } from '../../../build/swc/types'; import type { EntryKey } from './entry-key'; import type { NextConfigComplete } from '../../../server/config-shared'; type IssueKey = `${Issue['severity']}-${Issue['filePath']}-${string}-${string}`; export type IssuesMap = Map; export type EntryIssuesMap = Map; export type TopLevelIssuesMap = IssuesMap; /** * An error generated from emitted Turbopack issues. This can include build * errors caused by issues with user code. */ export declare class ModuleBuildError extends Error { name: string; } /** * Thin stopgap workaround layer to mimic existing wellknown-errors-plugin in webpack's build * to emit certain type of errors into cli. */ export declare function isWellKnownError(issue: Issue): boolean; export declare function getIssueKey(issue: Issue): IssueKey; export declare function getTurbopackJsConfig(dir: string, nextConfig: NextConfigComplete): Promise<{ compilerOptions: Record; }>; export declare function processIssues(currentEntryIssues: EntryIssuesMap, key: EntryKey, result: TurbopackResult, throwIssue: boolean, logErrors: boolean): void; export declare function formatIssue(issue: Issue): string; export declare function isRelevantWarning(issue: Issue): boolean; export declare function renderStyledStringToErrorAnsi(string: StyledString): string; export declare function isPersistentCachingEnabled(config: NextConfigComplete): boolean; export {};