We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba8eef1 commit 0f958adCopy full SHA for 0f958ad
src/reactivity/ref.ts
@@ -12,7 +12,7 @@ type BailTypes = Function | Map<any, any> | Set<any> | WeakMap<any, any> | WeakS
12
type BaseTypes = string | number | boolean;
13
14
declare const _refBrand: unique symbol;
15
-export interface Ref<T> {
+export interface Ref<T = any> {
16
readonly [_refBrand]: true;
17
value: T;
18
}
0 commit comments