Skip to content

Commit f734be4

Browse files
authored
fix: missing return type for del (#49)
1 parent a05bc9d commit f734be4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ declare const isVue3: boolean
44
declare const install: (vue?: any) => void
55

66
export function set<T>(target: any, key: any, val: T): T
7-
export function del(target: any, key: any)
7+
export function del(target: any, key: any): void
88

99
export * from 'vue'
1010
export {

0 commit comments

Comments
 (0)