/opt/canhelp/node_modules/next/dist/shared/lib/turbopack
NameSizeModeActions
compilation-events.d.ts4460644editdlrm
compilation-events.js15570644editdlrm
compilation-events.js.map21280644editdlrm
entry-key.d.ts6650644editdlrm
entry-key.js8000644editdlrm
entry-key.js.map13100644editdlrm
internal-error.d.ts8570644editdlrm
internal-error.js18250644editdlrm
internal-error.js.map27360644editdlrm
manifest-loader.d.ts29180644editdlrm
manifest-loader.js245170644editdlrm
manifest-loader.js.map443530644editdlrm
utils.d.ts15210644editdlrm
utils.js114850644editdlrm
utils.js.map174680644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/shared/lib/turbopack/internal-error.d.ts (857B)
import type { TurbopackInternalErrorOpts } from '../../../build/swc/generated-native'; /** * An error caused by a bug in Turbopack, and not the user's code (e.g. a Rust panic). These should * be written to a log file and details should not be shown to the user. * * These are constructed in Turbopack by calling `throwTurbopackInternalError`. */ export declare class TurbopackInternalError extends Error { name: string; location: string | undefined; __NEXT_ERROR_CODE: string; constructor({ message, anonymizedLocation }: TurbopackInternalErrorOpts); } /** * A helper used by the napi Rust entrypoints to construct and throw a `TurbopackInternalError`. * * When called, this will emit a telemetry event. */ export declare function throwTurbopackInternalError(conversionError: Error | null, opts: TurbopackInternalErrorOpts): never;