UNPKG

@infosel-sdk/core

Version:

Core SDK for Infosel financial services platform. Provides essential infrastructure for authentication, HTTP/GraphQL communication, storage management, and error handling.

6 lines (5 loc) 187 B
export default interface AppStorage { getObject<T>(key: string): Promise<T>; saveObject<T>(key: string, object: T): Promise<T>; removeObject(key: string): Promise<boolean>; }