mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-01 01:25:38 -05:00
14 lines
273 B
TypeScript
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();
|
|
}
|