We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 817db85 commit 957f6a0Copy full SHA for 957f6a0
1 file changed
extensions/ql-vscode/src/common/app.ts
@@ -6,13 +6,13 @@ import { Memento } from "./memento";
6
export interface App {
7
createEventEmitter<T>(): AppEventEmitter<T>;
8
executeCommand(command: string, ...args: any): Thenable<void>;
9
- mode: AppMode;
10
- logger: Logger;
11
- subscriptions: Disposable[];
12
- extensionPath: string;
13
- globalStoragePath: string;
14
- workspaceStoragePath?: string;
15
- workspaceState: Memento;
+ readonly mode: AppMode;
+ readonly logger: Logger;
+ readonly subscriptions: Disposable[];
+ readonly extensionPath: string;
+ readonly globalStoragePath: string;
+ readonly workspaceStoragePath?: string;
+ readonly workspaceState: Memento;
16
}
17
18
export enum AppMode {
0 commit comments