@vue/reactivity 3.2.21 → 3.2.22
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 +3 -3
- package/package.json +2 -2
package/dist/reactivity.d.ts
CHANGED
|
@@ -4,8 +4,6 @@ declare type Builtin = Primitive | Function | Date | Error | RegExp;
|
|
|
4
4
|
|
|
5
5
|
declare type CollectionTypes = IterableCollections | WeakCollections;
|
|
6
6
|
|
|
7
|
-
declare const ComoutedRefSymbol: unique symbol;
|
|
8
|
-
|
|
9
7
|
export declare function computed<T>(getter: ComputedGetter<T>, debugOptions?: DebuggerOptions): ComputedRef<T>;
|
|
10
8
|
|
|
11
9
|
export declare function computed<T>(options: WritableComputedOptions<T>, debugOptions?: DebuggerOptions): WritableComputedRef<T>;
|
|
@@ -14,9 +12,11 @@ export declare type ComputedGetter<T> = (...args: any[]) => T;
|
|
|
14
12
|
|
|
15
13
|
export declare interface ComputedRef<T = any> extends WritableComputedRef<T> {
|
|
16
14
|
readonly value: T;
|
|
17
|
-
[
|
|
15
|
+
[ComputedRefSymbol]: true;
|
|
18
16
|
}
|
|
19
17
|
|
|
18
|
+
declare const ComputedRefSymbol: unique symbol;
|
|
19
|
+
|
|
20
20
|
export declare type ComputedSetter<T> = (v: T) => void;
|
|
21
21
|
|
|
22
22
|
export declare function customRef<T>(factory: CustomRefFactory<T>): Ref<T>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vue/reactivity",
|
|
3
|
-
"version": "3.2.
|
|
3
|
+
"version": "3.2.22",
|
|
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.22"
|
|
40
40
|
}
|
|
41
41
|
}
|