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