UNPKG

@cruxpay/js-sdk

Version:

CruxPay Javascript SDK

8 lines (7 loc) 262 B
import { StorageService } from "./storage"; export declare class InMemStorage extends StorageService { private dataMemory; constructor(); setItem: (key: string, value: string) => Promise<void>; getItem: (key: string) => Promise<string | null>; }