UNPKG

filestack-js

Version:

Official JavaScript library for Filestack

11 lines (10 loc) 370 B
import { STORE_TYPE } from './store'; export declare class Store { private availableTypes; constructor(); hasAccess(prefType?: STORE_TYPE): boolean; getItem(key: string, prefType?: STORE_TYPE): string; setItem(key: string, value: string, prefType?: STORE_TYPE): void; removeItem(key: string, prefType?: STORE_TYPE): void; private getStore; }