wilddragon-site/node_modules/next/dist/server/lib/chrome-devtools-workspace.d.ts

7 lines
354 B
TypeScript
Raw Normal View History

2026-04-17 15:51:01 -04:00
import type { ServerResponse } from 'http';
import type { NextConfigRuntime } from '../config-shared';
export declare function isChromeDevtoolsWorkspaceUrl(pathname: string | undefined): boolean;
export declare function handleChromeDevtoolsWorkspaceRequest(response: ServerResponse, opts: {
dir: string;
}, config: NextConfigRuntime): Promise<void>;