()
| 117 | } |
| 118 | |
| 119 | static getAll(): Record<string, number> { |
| 120 | return BrowserStorage.getItem<Record<string, number>>(WorkspaceRecencyStorage.KEY, {}) |
| 121 | } |
| 122 | |
| 123 | static getMostRecent(): string | null { |
| 124 | const map = WorkspaceRecencyStorage.getAll() |
no test coverage detected