diff --git a/@stellar/typescript-wallet-sdk-km/src/Plugins/BrowserStorageFacade.ts b/@stellar/typescript-wallet-sdk-km/src/Plugins/BrowserStorageFacade.ts index 8a0e428..783481b 100644 --- a/@stellar/typescript-wallet-sdk-km/src/Plugins/BrowserStorageFacade.ts +++ b/@stellar/typescript-wallet-sdk-km/src/Plugins/BrowserStorageFacade.ts @@ -3,9 +3,11 @@ import { EncryptedKey } from "../Types"; export interface BrowserStorageConfigParams { prefix?: string; storage: { - get: (key?: string | string[] | object) => Promise; + get: ( + key?: null | string | string[] | Record, + ) => Promise>; remove: (key: string | string[]) => Promise; - set: (items: object) => Promise; + set: (items: Record) => Promise; }; }