File size: 418 Bytes
fea495a
 
 
 
 
 
 
1
2
3
4
5
6
7
8
import type { ServerResponse } from 'http';
import type { NextConfigComplete } from '../config-shared';
import type { NextUrlWithParsedQuery } from '../request-meta';
export declare function isChromeDevtoolsWorkspaceUrl(url: NextUrlWithParsedQuery): boolean;
export declare function handleChromeDevtoolsWorkspaceRequest(response: ServerResponse, opts: {
    dir: string;
}, config: NextConfigComplete): Promise<void>;