(key: string, callback: (error: Error | null, value: string) => void)
| 142 | // storage.js |
| 143 | interface LocalStore { |
| 144 | get(key: string, callback: (error: Error | null, value: string) => void): void, |
| 145 | |
| 146 | get(key_default_value_pairs: Record<string, string>, callback: (error: Error | null, values: Record<string, string>) => void): void, |
| 147 |
no outgoing calls