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