We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3ad9dc4 commit 5852cc8Copy full SHA for 5852cc8
packages/vue/ref-macros.d.ts
@@ -28,7 +28,7 @@ declare function _$<T extends object>(arg?: T): ShallowUnwrapRef<T>
28
/**
29
* Vue ref transform macro for accessing underlying refs of reactive varaibles.
30
*/
31
-declare function _$$<T>(value: T): ComputedRef<T>
+declare function _$$<T>(value: ComputedRefValue<T>): ComputedRef<T>
32
declare function _$$<T>(
33
value: WritableComputedRefValue<T>
34
): WritableComputedRef<T>
0 commit comments