(key: string)
| 11 | // TODO(bershanskiy): Popup UI heeds only hasCustom*Fixes() and nothing else. Consider storing that data separately. |
| 12 | interface DevToolsStorage { |
| 13 | get(key: string): Promise<string | null>; |
| 14 | set(key: string, value: string): Promise<void> | void; |
| 15 | remove(key: string): Promise<void> | void; |
| 16 | has(key: string): Promise<boolean> | boolean; |
no outgoing calls
no test coverage detected