Test if a type is a BigIntLiteralType.
BigIntLiteralType
declare const type: ts.Type;if (isBigIntLiteralType(type)) { // ...} Copy
declare const type: ts.Type;if (isBigIntLiteralType(type)) { // ...}
Test if a type is a
BigIntLiteralType
.