| 42 | get hasNotifiedAboutProfileModeDefaultConfiguration(): boolean { return !!this.context.globalState.get("hasNotifiedAboutProfileModeDefaultConfiguration"); } |
| 43 | set hasNotifiedAboutProfileModeDefaultConfiguration(value: boolean) { void this.context.globalState.update("hasNotifiedAboutProfileModeDefaultConfiguration", value); } |
| 44 | get lastSeenVersion(): string | undefined { return this.context.globalState.get("lastSeenVersion"); } |
| 45 | set lastSeenVersion(value: string | undefined) { void this.context.globalState.update("lastSeenVersion", value); } |
| 46 | get lastUsedNewProjectPath(): string | undefined { return this.context.globalState.get("lastUsedNewProjectPath"); } |
| 47 | set lastUsedNewProjectPath(value: string | undefined) { void this.context.globalState.update("lastUsedNewProjectPath", value); } |