UNPKG

vscode-chrome-debug-core

Version:

A library for building VS Code debug adapters for targets that support the Chrome Remote Debug Protocol

11 lines (10 loc) 293 B
import { Logger } from 'vscode-debugadapter'; /** * Implements ILogger as a no-op */ export declare class NullLogger implements Logger.ILogger { log(msg: string, level?: Logger.LogLevel): void; verbose(msg: string): void; warn(msg: string): void; error(msg: string): void; }