/** * Store module exports. */ export type { ActionContext, Actions, Getters, OnActionCallback, PersistedStoreOptions, StateFactory, StorageBackend, Store, StoreDefinition, StorePatch, StorePlugin, StoreSerializer, StoreSubscriber, } from './types'; export { createStore } from './create-store'; export { defineStore } from './define-store'; export { mapActions, mapGetters, mapState } from './mapping'; export { createPersistedStore } from './persisted'; export { registerPlugin } from './plugins'; export { destroyStore, getStore, listStores } from './registry'; export { watchStore } from './watch'; //# sourceMappingURL=index.d.ts.map