Files
qnc-admin-v3/packages/stores/shim-pinia.d.ts

10 lines
208 B
TypeScript
Raw Permalink Normal View History

2026-01-10 18:11:29 +08:00
// https://github.com/vuejs/pinia/issues/2098
declare module 'pinia' {
export function acceptHMRUpdate(
initialUseStore: any | StoreDefinition,
hot: any,
): (newModule: any) => any;
}
export {};