1
0
mirror of https://github.com/bitwarden/jslib synced 2025-12-19 17:53:48 +00:00

Make storageService protected in window.main

This commit is contained in:
Elias Papavasileiou
2020-03-25 13:38:35 +02:00
parent fabb278fb0
commit 0431565c65

View File

@@ -21,7 +21,7 @@ export class WindowMain {
private windowStates: { [key: string]: any; } = {};
private enableAlwaysOnTop: boolean = false;
constructor(private storageService: StorageService, private hideTitleBar = false,
constructor(protected storageService: StorageService, private hideTitleBar = false,
private defaultWidth = 950, private defaultHeight = 600) { }
init(): Promise<any> {