UNPKG

@vscode/js-debug-browsers

Version:

Browser launch and discovery logic used in VS Code's JavaScript Debugger

10 lines (9 loc) 277 B
import { IBrowserFinder } from './index'; /** * A no-op browser finder used to stub unsupported browsers/platforms (like * Edge on Linux). */ export declare class NoopFinder implements IBrowserFinder { findWhere(): Promise<undefined>; findAll(): Promise<never[]>; }