(service: string, key: string, value: string | undefined)
| 275 | export const IEncryptedStorage = Symbol('IEncryptedStorage'); |
| 276 | export interface IEncryptedStorage { |
| 277 | store(service: string, key: string, value: string | undefined): Promise<void>; |
| 278 | retrieve(service: string, key: string): Promise<string | undefined>; |
| 279 | } |
no outgoing calls
no test coverage detected