@nent/core
Version:
13 lines (12 loc) • 388 B
JavaScript
/*!
* NENT 2022
*/
/* istanbul ignore file */
import { createStore } from '@stencil/store';
class StateModel {
}
const store = createStore({
autoNext: true,
});
const { state, onChange, reset, dispose } = store;
export { store as presentationStore, state as presentationState, onChange as onPresentationChange, reset as presentationStateReset, dispose as presentationStateDispose, };