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.

9 lines (8 loc) 292 B
import type { List } from "../models/liste"; export type PartialList = Omit<List, '@id' | 'id' | 'name' | 'type'> & { id?: number; name?: string; type?: ListTypes; }; export type ListTypes = "0" | "1" | "2" | "3" | "4" | "5"; export type ListTypesMap = Record<ListTypes, string>;