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.

16 lines (15 loc) 420 B
/*! * NENT 2022 */ /* istanbul ignore file */ import { createStore } from '@stencil/store'; class StateModel { } const store = createStore({ hasAudioComponent: false, muted: false, debug: false, tracksPlayed: [], }); const { state, onChange, dispose, reset } = store; export { store as audioStore, state as audioState, onChange as onAudioStateChange, dispose as audioStateDispose, reset as audioStateReset, };