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.

15 lines (14 loc) 385 B
/*! * NENT 2022 */ /* istanbul ignore file */ import { createStore } from '@stencil/store'; class StateModel { } const store = createStore({ debug: false, providers: {}, providerTimeout: 1, }); const { state, onChange, reset, dispose } = store; export { store as dataStore, state as dataState, onChange as onDataChange, reset as dataStateReset, dispose as dataStateDispose, };