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.

7 lines (6 loc) 273 B
import AppStorage from '../../domain/data_access/app_storage'; export default class AppLocalStorage implements AppStorage { getObject<T>(key: string): Promise<T>; saveObject<T>(key: string, object: T): Promise<T>; removeObject(key: string): Promise<boolean>; }