fix(types/ref-transform): fix $$() type
This commit is contained in:
parent
3ad9dc4880
commit
5852cc8d82
2
packages/vue/ref-macros.d.ts
vendored
2
packages/vue/ref-macros.d.ts
vendored
@ -28,7 +28,7 @@ declare function _$<T extends object>(arg?: T): ShallowUnwrapRef<T>
|
|||||||
/**
|
/**
|
||||||
* Vue ref transform macro for accessing underlying refs of reactive varaibles.
|
* 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>(
|
declare function _$$<T>(
|
||||||
value: WritableComputedRefValue<T>
|
value: WritableComputedRefValue<T>
|
||||||
): WritableComputedRef<T>
|
): WritableComputedRef<T>
|
||||||
|
Loading…
Reference in New Issue
Block a user