UNPKG

filestack-js

Version:

Official JavaScript library for Filestack

8 lines (7 loc) 305 B
import { STORE_TYPE } from './store'; export declare class Store { getItem(key: string, prefStore?: STORE_TYPE): string; setItem(key: string, value: string, prefStore?: STORE_TYPE): any; removeItem(key: string, prefStore?: STORE_TYPE): string; hasAccess(prefType?: STORE_TYPE): boolean; }