flowable-devops/frontend/packages/stores/shim-pinia.d.ts
dengqichen d42166d2c0 提交
2025-10-13 16:25:13 +08:00

10 lines
208 B
TypeScript

// https://github.com/vuejs/pinia/issues/2098
declare module 'pinia' {
export function acceptHMRUpdate(
initialUseStore: any | StoreDefinition,
hot: any,
): (newModule: any) => any;
}
export {};