Skip to content

Commit e4096e9

Browse files
committed
change to boolean primitive type
1 parent 136616a commit e4096e9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/config/configStore.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ interface ConfigStorePaths {
5353
export class ConfigStore {
5454
data?: Config.Options = undefined;
5555
validationResult = {};
56-
hasConfigLoaded: Boolean = false;
57-
isValid: Boolean = false;
58-
isUsingBackupConfig: Boolean = false;
56+
hasConfigLoaded: boolean = false;
57+
isValid: boolean = false;
58+
isUsingBackupConfig: boolean = false;
5959
lastUpdated: Date;
6060
loadError: string | undefined;
6161

0 commit comments

Comments
 (0)