fix(types): fix propType<any> type inference (#4985)

fix #4983
This commit is contained in:
fishDog
2021-11-25 17:52:13 +08:00
committed by GitHub
parent c17cbdc28f
commit 3c449cd408
4 changed files with 12 additions and 3 deletions

2
test-dts/index.d.ts vendored
View File

@@ -14,3 +14,5 @@ export type IsUnion<T, U extends T = T> = (T extends any
: never) extends false
? false
: true
export type IsAny<T> = 0 extends (1 & T) ? true : false