UNPKG

@pokt-network/pocket-js

Version:

Pocket-js core package with the main functionalities to interact with the Pocket Network.

12 lines (11 loc) 264 B
/** * @description KeyBase store interface */ export interface IKVStore { add(key: string, value: any): void; get(key: string): any | undefined; has(key: string): boolean; getItems(): any[]; remove(key: string): boolean; clear(): void; }