Files
azuredatastudio/extensions-modules/src/models/interfaces.ts

14 lines
273 B
TypeScript

'use strict';
export interface ILogger {
logDebug(message: string): void;
increaseIndent(): void;
decreaseIndent(): void;
append(message?: string): void;
appendLine(message?: string): void;
}
export interface IRuntime {
getRuntimeDisplayName();
}