@rws-framework/client
Version:
This package provides the core client-side framework for Realtime Web Suit (RWS), enabling modular, asynchronous web components, state management, and integration with backend services. It is located in `.dev/client`.
23 lines (19 loc) • 403 B
TypeScript
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
};