Determines whether the given type is a boolean literal type for "false".
declare const type: ts.Type;if (isFalseLiteralType(type)) { // ...} Copy
declare const type: ts.Type;if (isFalseLiteralType(type)) { // ...}
Determines whether the given type is a boolean literal type for "false".