| 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); } |
| 48 | |
| 49 | public getPackageLastCheckedForUpdates(packageID: string): number | undefined { return this.context.globalState.get<number>(`packageLastCheckedForUpdates:${packageID}`); } |