| 22 | } |
| 23 | |
| 24 | get devToolsNotificationLastShown(): number | undefined { return this.context.globalState.get<number>("devToolsNotificationLastShown"); } |
| 25 | set devToolsNotificationLastShown(value: number | undefined) { void this.context.globalState.update("devToolsNotificationLastShown", value); } |
| 26 | get devToolsNotificationDoNotShow(): boolean | undefined { return !!this.context.globalState.get("devToolsNotificationDoNotShowAgain"); } |
| 27 | set devToolsNotificationDoNotShow(value: boolean | undefined) { void this.context.globalState.update("devToolsNotificationDoNotShowAgain", value); } |