From ae892b142660e4fb00b93720740c9d52d94cf6d4 Mon Sep 17 00:00:00 2001 From: Glandos Date: Wed, 20 Sep 2023 10:30:36 +0200 Subject: [PATCH] Re-export Options API needed type fix https://github.com/vueuse/vueuse/issues/2232 --- lib/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/index.d.ts b/lib/index.d.ts index 897b4c5..775cda4 100644 --- a/lib/index.d.ts +++ b/lib/index.d.ts @@ -13,6 +13,7 @@ export function set(target: any, key: any, val: T): T export function del(target: any, key: any): void export * from 'vue' +export type { WatchOptions } from 'vue/types/v3-generated' export { V as Vue, Vue2,