mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-01 09:35:41 -05:00
SQL Operations Studio Public Preview 1 (0.23) release source code
This commit is contained in:
13
extensions-modules/src/models/interfaces.ts
Normal file
13
extensions-modules/src/models/interfaces.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
'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();
|
||||
}
|
||||
Reference in New Issue
Block a user