/opt/canhelp/node_modules/next/dist/next-devtools/userspace/app
NameSizeModeActions
errors/-0755rm
app-dev-overlay-error-boundary.d.ts10060644editdlrm
app-dev-overlay-error-boundary.js28180644editdlrm
app-dev-overlay-error-boundary.js.map33840644editdlrm
app-dev-overlay-setup.d.ts110644editdlrm
app-dev-overlay-setup.js8420644editdlrm
app-dev-overlay-setup.js.map7290644editdlrm
client-entry.d.ts1710644editdlrm
client-entry.js13210644editdlrm
client-entry.js.map9820644editdlrm
forward-logs.d.ts13970644editdlrm
forward-logs.js136080644editdlrm
forward-logs.js.map205820644editdlrm
segment-explorer-node.d.ts10850644editdlrm
segment-explorer-node.js51440644editdlrm
segment-explorer-node.js.map66920644editdlrm
terminal-logging-config.d.ts2220644editdlrm
terminal-logging-config.js12260644editdlrm
terminal-logging-config.js.map9880644editdlrm
Edit: /opt/canhelp/node_modules/next/dist/next-devtools/userspace/app/forward-logs.d.ts (1397B)
import { type ClientLogEntry } from '../../shared/forward-logs-shared'; export declare const PROMISE_MARKER = "Promise {}"; export declare const UNAVAILABLE_MARKER = "[Unable to view]"; export declare const isTerminalLoggingEnabled: boolean; /** * allows us to: * - revive the undefined log in the server as it would look in the browser * - not read/attempt to serialize promises (next will console error if you do that, and will cause this program to infinitely recurse) * - if we read a proxy that throws (no way to detect if something is a proxy), explain to the user we can't read this data */ export declare function preLogSerializationClone(value: T, seen?: WeakMap): any; export declare const logStringify: (data: unknown) => string; export declare const logQueue: { entries: Array; onSocketReady: (socket: WebSocket) => void; flushScheduled: boolean; socket: WebSocket | null; cancelFlush: (() => void) | null; sourceType?: 'server' | 'edge-server'; router: 'app' | 'pages' | null; scheduleLogSend: (entry: ClientLogEntry) => void; }; export declare const forwardErrorLog: (args: any[]) => void; export declare function logUnhandledRejection(reason: unknown): void; export declare function forwardUnhandledError(error: Error): void; export declare const initializeDebugLogForwarding: (router: "app" | "pages") => void;