UNPKG

anon-identity

Version:

Decentralized identity framework with DIDs, Verifiable Credentials, and privacy-preserving selective disclosure

12 lines 429 B
import { IStorageProvider, StorageConfig } from './types'; /** * Browser-compatible storage factory * Only supports memory storage in the browser */ export declare class StorageFactory { private static instances; static createProvider(config: StorageConfig): IStorageProvider; static getDefaultProvider(): IStorageProvider; static clearInstances(): void; } //# sourceMappingURL=storage-factory-browser.d.ts.map