chore: revert prettier
This commit is contained in:
@@ -72,11 +72,9 @@ export type UnwrapRef<T> = {
|
||||
}[T extends ComputedRef<any>
|
||||
? 'cRef'
|
||||
: T extends Ref
|
||||
? 'ref'
|
||||
: T extends Array<any>
|
||||
? 'array'
|
||||
: T extends Function | CollectionTypes
|
||||
? 'ref' // bail out on types that shouldn't be unwrapped
|
||||
: T extends object
|
||||
? 'object'
|
||||
: 'ref']
|
||||
? 'ref'
|
||||
: T extends Array<any>
|
||||
? 'array'
|
||||
: T extends Function | CollectionTypes
|
||||
? 'ref' // bail out on types that shouldn't be unwrapped
|
||||
: T extends object ? 'object' : 'ref']
|
||||
|
||||
Reference in New Issue
Block a user