(k: string)
| 12 | getItem(k: string) { return this._s.get(k) ?? null; }, |
| 13 | setItem(k: string, v: string) { this._s.set(k, v); }, |
| 14 | removeItem(k: string) { this._s.delete(k); }, |
| 15 | }; |
| 16 | |
| 17 | import { api, ApiError } from "../../../viewer/src/api/client"; |