Skip to content

Commit 0f958ad

Browse files
committed
fix type
1 parent ba8eef1 commit 0f958ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/reactivity/ref.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ type BailTypes = Function | Map<any, any> | Set<any> | WeakMap<any, any> | WeakS
1212
type BaseTypes = string | number | boolean;
1313

1414
declare const _refBrand: unique symbol;
15-
export interface Ref<T> {
15+
export interface Ref<T = any> {
1616
readonly [_refBrand]: true;
1717
value: T;
1818
}

0 commit comments

Comments
 (0)