@vue/reactivity 3.2.6 → 3.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/reactivity.d.ts +2 -2
- package/package.json +2 -2
package/dist/reactivity.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ export declare type DebuggerEvent = {
|
|
|
27
27
|
effect: ReactiveEffect;
|
|
28
28
|
} & DebuggerEventExtraInfo;
|
|
29
29
|
|
|
30
|
-
declare type DebuggerEventExtraInfo = {
|
|
30
|
+
export declare type DebuggerEventExtraInfo = {
|
|
31
31
|
target: object;
|
|
32
32
|
type: TrackOpTypes | TriggerOpTypes;
|
|
33
33
|
key: any;
|
|
@@ -237,7 +237,7 @@ export { stop_2 as stop }
|
|
|
237
237
|
|
|
238
238
|
export declare function toRaw<T>(observed: T): T;
|
|
239
239
|
|
|
240
|
-
declare type ToRef<T> = [T] extends [Ref] ? T : Ref<UnwrapRef<T>>;
|
|
240
|
+
export declare type ToRef<T> = [T] extends [Ref] ? T : Ref<UnwrapRef<T>>;
|
|
241
241
|
|
|
242
242
|
export declare function toRef<T extends object, K extends keyof T>(object: T, key: K): ToRef<T[K]>;
|
|
243
243
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/reactivity",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.7",
|
|
4
4
|
"description": "@vue/reactivity",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/reactivity.esm-bundler.js",
|
|
@@ -36,6 +36,6 @@
|
|
|
36
36
|
},
|
|
37
37
|
"homepage": "https://github.com/vuejs/vue-next/tree/master/packages/reactivity#readme",
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@vue/shared": "3.2.
|
|
39
|
+
"@vue/shared": "3.2.7"
|
|
40
40
|
}
|
|
41
41
|
}
|