diff --git a/packages/reactivity/src/ref.ts b/packages/reactivity/src/ref.ts index 5f40fbb7c28..bd121e47d46 100644 --- a/packages/reactivity/src/ref.ts +++ b/packages/reactivity/src/ref.ts @@ -496,10 +496,10 @@ type BaseTypes = string | number | boolean export interface RefUnwrapBailTypes {} export type ShallowUnwrapRef = { - [K in keyof T]: DistrubuteRef + [K in keyof T]: DistributeRef } -type DistrubuteRef = T extends Ref ? V : T +type DistributeRef = T extends Ref ? V : T export type UnwrapRef = T extends ShallowRef