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.
10 lines (9 loc) • 398 B
TypeScript
import type { AnyObject, EppsStore } from "../types";
import type { ParentStoreInterface, ParentStore as ParentStoreType } from "../types/epps";
export default class ParentStore implements ParentStoreInterface {
private _storeConstructor;
private _id;
get id(): string;
constructor(id: string, store: ParentStoreType);
build(childId: string): EppsStore<AnyObject, AnyObject>;
}