We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
pipe
createType
Foo<A, B, C = string>
Foo<T, U>
Foo<T, U, >
*
auto
infer
T | T[]
T
{ x?: string }
T[]
AOrArr<T>
never
&&
The text was updated successfully, but these errors were encountered:
No branches or pull requests
pipe
is incorrect when strict mode is disabled #25826 Inference ofpipe
-like functionscreateType
fail, but it's not clear what to do afterwardsFoo<A, B, C = string>
, thenFoo<T, U>
is different fromFoo<T, U, >
*
orauto
orinfer
*
is the best*
T | T[]
withT
={ x?: string }
T[]
is alsoT
for weakT
T
fromT | T[]
in theAOrArr<T>
examplenever
with strictNullChecks #26130 or Narrowing on assignment does not remove weak types #26405?never
with strictNullChecks #26130 - not a regression, but weirdT | T[]
with weakT
is suspect but not uncommonnever
with strictNullChecks #26130 happens)&&
in non-SNCThe text was updated successfully, but these errors were encountered: