We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7890fd5 commit 6366a6dCopy full SHA for 6366a6d
src/compiler/types.ts
@@ -2224,7 +2224,8 @@ namespace ts {
2224
2225
/* @internal */
2226
Nullable = Undefined | Null,
2227
- Falsy = String | Number | Boolean | Void | Undefined | Null,
+ /* @internal */
2228
+ Falsy = Void | Undefined | Null, // TODO: Add false, 0, and ""
2229
2230
Intrinsic = Any | String | Number | Boolean | ESSymbol | Void | Undefined | Null | Never,
2231
0 commit comments