Determines whether the given type is the "error" intrinsic type.
The intrinsic error type occurs when TypeScript encounters an error while trying to resolve the type.
declare const type: ts.Type;if (isIntrinsicErrorType(type)) { // ...} Copy
declare const type: ts.Type;if (isIntrinsicErrorType(type)) { // ...}
Determines whether the given type is the "error" intrinsic type.
The intrinsic error type occurs when TypeScript encounters an error while trying to resolve the type.