UNPKG

epps

Version:

Enhances Pinia stores with advanced features such as persistence, encryption, and store extension. Simplifies state management and ensures data security for Vue.js and Nuxt applications.

6 lines (5 loc) 328 B
import type { AnyObject } from "../types"; import type { AugmentOptionApiStore, CollectionState, CollectionStoreMethods } from "../types/store"; type AugmentingStore = (id: string) => AugmentOptionApiStore<CollectionStoreMethods, CollectionState<AnyObject>>; export declare const useCollectionStore: AugmentingStore; export {};