TypeScript extends any ? may return right hand in conditional types

nle07wnf  于 8个月前  发布在  TypeScript
关注(0)|答案(2)|浏览(134)

TypeScript 版本: 4.0.5
搜索词:

  • 类型推断
  • extends any
  • 条件类型
  • 右手边
    预期行为:

type D1 = X1 <O1> 返回 false

实际行为:

在下面的代码中,type D1 = X1<O1> 似乎返回 false ,但实际上返回的是 true
如果你将 extends any ? 中看似无关的右手边类型更改为 undefined ,它将按预期行为运行。

相关问题:
代码

  1. type X1<T> = IfEq<
  2. AllKeys1<T>,
  3. keyof T,
  4. true,
  5. false
  6. >;
  7. type X2<T> = IfEq<
  8. AllKeys2<T>,
  9. keyof T,
  10. true,
  11. false
  12. >;
  13. type IfEq<X, Y, T, E> = [X] extends [Y] ? ([Y] extends [X] ? T : E) : E;
  14. // AllKeys<{ x: ... } | { x: ...; y: ... }> -> "x" | ("x" | "y") -> "x" | "y"
  15. type AllKeys1<O extends Object> = O extends any ? keyof O : never;
  16. type AllKeys2<O extends Object> = O extends any ? keyof O : undefined;
  17. type O1 = { x: string; y: number } | { x: boolean; z: number }
  18. type A1 = AllKeys1<O1> // "x" | "y" | "z"
  19. type A2 = AllKeys2<O1> // "x" | "y" | "z"
  20. type B = keyof O1 // "x"
  21. type C1 = IfEq<A1, B, true, false> // false
  22. type C2 = IfEq<A2, B, true, false> // false
  23. type D1 = X1<O1> // true ???
  24. type D2 = X2<O1> // false
  25. type O2 = { x: string; y: number } | { x: boolean; y: Object }
  26. type E1 = X1<O2> // true
  27. type E2 = X2<O2> // true

输出

  1. "use strict";

编译器选项

  1. {
  2. "compilerOptions": {
  3. "noImplicitAny": true,
  4. "strictNullChecks": true,
  5. "strictFunctionTypes": true,
  6. "strictPropertyInitialization": true,
  7. "strictBindCallApply": true,
  8. "noImplicitThis": true,
  9. "noImplicitReturns": true,
  10. "alwaysStrict": true,
  11. "esModuleInterop": true,
  12. "declaration": true,
  13. "experimentalDecorators": true,
  14. "emitDecoratorMetadata": true,
  15. "moduleResolution": 2,
  16. "target": "ES2017",
  17. "jsx": "React",
  18. "module": "ESNext"
  19. }
  20. }

** playground 链接:**提供

dgenwo3n

dgenwo3n1#

extends unknown 通常更适合创建分配性。

0x6upsns

0x6upsns2#

这似乎在4.1.5和4.2.3之间已经修复了。

相关问题