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.
17 lines (16 loc) • 539 B
TypeScript
import type { ListTypes, ListTypesMap } from "../types/list";
import type { Item } from "./item";
export interface List extends Item {
guest?: any;
items?: string[];
name?: string;
owner?: any;
type?: ListTypes;
}
export declare const TYPE_COLLECTION: string;
export declare const TYPE_GIFT: string;
export declare const TYPE_MAINTEANCE: string;
export declare const TYPE_RECIPE: string;
export declare const TYPE_SHOPPING: string;
export declare const TYPE_TASK: string;
export declare const LIST_TYPES: ListTypesMap;