UNPKG

vite-plugin-update-detection

Version:

A package to detect version changes in your application, including a Vite plugin and a React hook.

6 lines (5 loc) 205 B
interface ILookForVersionChange extends Function { (): Promise<boolean>; } export default function useVersionChangeDetection(onChange?: (newVersion: string) => void): ILookForVersionChange; export {};