declare module 'virtual:pwa-register/vue' { // eslint-disable-next-line @typescript-eslint/prefer-ts-expect-error // @ts-ignore ignore when vue is not installed import type { Ref } from 'vue' import type { RegisterSWOptions } from 'vite-plugin-pwa/types' export type { RegisterSWOptions } export function useRegisterSW(options?: RegisterSWOptions): { needRefresh: Ref offlineReady: Ref /** * Reloads the current window to allow the service worker take the control. * * @param reloadPage From version 0.13.2+ this param is not used anymore. */ updateServiceWorker: (reloadPage?: boolean) => Promise } }