Skip to content

Commit c6217b4

Browse files
committed
refactor(types): use pure type symbol
1 parent cfd1c85 commit c6217b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/reactivity/src/ref.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { reactive, isProxy, toRaw } from './reactive'
55
import { ComputedRef } from './computed'
66
import { CollectionTypes } from './collectionHandlers'
77

8-
const RefSymbol = Symbol()
8+
declare const RefSymbol: unique symbol
99

1010
export interface Ref<T = any> {
1111
/**

0 commit comments

Comments
 (0)