Skip to content

Commit

Permalink
fix(types/reactivity): error TS4058 caused by RefSymbol (#2548)
Browse files Browse the repository at this point in the history
  • Loading branch information
glitchboyl authored May 24, 2021
1 parent a0c5793 commit 90aa835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/reactivity/src/ref.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { isArray, isObject, hasChanged } from '@vue/shared'
import { reactive, isProxy, toRaw, isReactive } from './reactive'
import { CollectionTypes } from './collectionHandlers'

declare const RefSymbol: unique symbol
export declare const RefSymbol: unique symbol

export interface Ref<T = any> {
value: T
Expand Down

0 comments on commit 90aa835

Please sign in to comment.