UNPKG

@rws-framework/client

Version:

Realtime Web Suit is a web-component powered, MS FAST powered fullstack-oriented framework that you can use to create domain-agnostic modular asynchoronous components with intershared authorized states.

23 lines (19 loc) 403 B
interface Storage { _loaded: boolean; data: { [key: string]: any; }; } declare const _STORAGE: Readonly<Storage>; declare function get(key: string): any | null; declare function getAll(): any; declare function init(json: any): void; declare function has(key: string): boolean; declare function isLoaded(): boolean; export { get, getAll, has, init, isLoaded };