Skip to content

Commit 5ebd763

Browse files
committed
fix: typecheck for Vue 3
1 parent ba85dc7 commit 5ebd763

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/v3/index.d.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ declare const install: (vue?: any) => void
77
* @deprecated To avoid bringing in all the tree-shakable modules, this API has been deprecated. Use `Vue2` or named exports instead.
88
* Refer to https://github.com/vueuse/vue-demi/issues/41
99
*/
10-
declare const V: Vue
10+
declare const V: typeof Vue
1111

1212
export function set<T>(target: any, key: any, val: T): T
13-
export function del(target: any, key: any)
13+
export function del(target: any, key: any): void
1414

1515
export * from 'vue'
1616
export {

0 commit comments

Comments
 (0)