Skip to content

Commit

Permalink
fix(types/ref-transform): fix $$() type
Browse files Browse the repository at this point in the history
  • Loading branch information
Bigfish8 committed Sep 4, 2021
1 parent 3ad9dc4 commit 5852cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vue/ref-macros.d.ts
Expand Up @@ -28,7 +28,7 @@ declare function _$<T extends object>(arg?: T): ShallowUnwrapRef<T>
/**
* Vue ref transform macro for accessing underlying refs of reactive varaibles.
*/
declare function _$$<T>(value: T): ComputedRef<T>
declare function _$$<T>(value: ComputedRefValue<T>): ComputedRef<T>
declare function _$$<T>(
value: WritableComputedRefValue<T>
): WritableComputedRef<T>
Expand Down

0 comments on commit 5852cc8

Please sign in to comment.