Skip to content

Commit 90aa835

Browse files
authored
fix(types/reactivity): error TS4058 caused by RefSymbol (#2548)
1 parent a0c5793 commit 90aa835

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/reactivity/src/ref.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { isArray, isObject, hasChanged } from '@vue/shared'
44
import { reactive, isProxy, toRaw, isReactive } from './reactive'
55
import { CollectionTypes } from './collectionHandlers'
66

7-
declare const RefSymbol: unique symbol
7+
export declare const RefSymbol: unique symbol
88

99
export interface Ref<T = any> {
1010
value: T

0 commit comments

Comments
 (0)