shim-pinia.d.ts 208 B

123456789
  1. // https://github.com/vuejs/pinia/issues/2098
  2. declare module 'pinia' {
  3. export function acceptHMRUpdate(
  4. initialUseStore: any | StoreDefinition,
  5. hot: any,
  6. ): (newModule: any) => any;
  7. }
  8. export {};