| 53 | } from "@/common/preferences/userPreferenceParsing"; |
| 54 | |
| 55 | export interface UserPreferenceStorageArea { |
| 56 | readonly length: number; |
| 57 | key(index: number): string | null; |
| 58 | getItem(key: string): string | null; |
| 59 | } |
| 60 | |
| 61 | export interface StoredUserPreferenceEntry { |
| 62 | key: string; |
no outgoing calls
no test coverage detected