UNPKG

@bunq-community/bunq-js-client

Version:

[![NPM Version](https://img.shields.io/npm/v/@bunq-community/bunq-js-client.svg) ](https://www.npmjs.com/package/@bunq-community/bunq-js-client) [![NPM Downloads](https://img.shields.io/npm/dt/@bunq-community/bunq-js-client.svg) ](https://www.npmjs.com/p

6 lines (5 loc) 189 B
export default interface StorageInterface { get(key: string): Promise<any> | any; set(key: string, value: any): Promise<any> | void; remove(key: string): Promise<any> | void; }