UNPKG

@nent/core

Version:

Functional elements to add routing, data-binding, dynamic HTML, declarative actions, audio, video, and so much more. Supercharge static HTML files into web apps without script or builds.

18 lines (17 loc) 496 B
/*! * NENT 2022 */ /* istanbul ignore file */ import { createStore } from '@stencil/store'; export class CommonStateModel { } const store = createStore({ debug: false, analyticsEnabled: false, dataEnabled: false, elementsEnabled: false, routingEnabled: false, audioEnabled: true, }); const { state, onChange, reset, dispose } = store; export { store as commonStore, state as commonState, onChange as onCommonStateChange, reset as commonStateReset, dispose as commonStateDispose, };