vscode-chrome-debug-core
Version:
A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol
5 lines (4 loc) • 351 B
TypeScript
import { DebugProtocol } from 'vscode-debugprotocol';
export declare function mapRemoteClientToInternalPath(remoteUri: string): string;
export declare function mapInternalSourceToRemoteClient(source: DebugProtocol.Source, remoteAuthority: string | undefined): DebugProtocol.Source;
export declare function isInternalRemotePath(path: string): boolean;