(key: string)
| 82 | private readonly localStorage = new ChromeStorage("system", false); |
| 83 | |
| 84 | private isLocalKey(key: string): boolean { |
| 85 | return STORAGE_LOCAL_KEYS.has(key); |
| 86 | } |
| 87 | |
| 88 | // 获取 key 对应的主 storage |
| 89 | private getStorage(key: string): ChromeStorage { |
no test coverage detected