refactor(types): use pure type symbol

This commit is contained in:
Evan You 2020-05-04 09:37:24 -04:00
parent cfd1c85fbc
commit c6217b4d46

View File

@ -5,7 +5,7 @@ import { reactive, isProxy, toRaw } from './reactive'
import { ComputedRef } from './computed'
import { CollectionTypes } from './collectionHandlers'
const RefSymbol = Symbol()
declare const RefSymbol: unique symbol
export interface Ref<T = any> {
/**