vue-vben-admin/packages/stores/shim-pinia.d.ts

10 lines
208 B
TypeScript
Raw Permalink Normal View History

// https://github.com/vuejs/pinia/issues/2098
2024-05-19 21:20:42 +08:00
declare module 'pinia' {
export function acceptHMRUpdate(
initialUseStore: any | StoreDefinition,
2024-05-19 21:20:42 +08:00
hot: any,
): (newModule: any) => any;
}
export {};