UNPKG

@anchor-solutions-nl/translator-as

Version:
12 lines (11 loc) 285 B
import { IObjectMap } from './models'; /** * This internal store class */ export declare class InternalStore { store: IObjectMap<any>; getItem(prop: string): any; setItem(prop: string, data: any): void; clear(): void; removeItem(prop: string): void; }