Determines whether the given type is the "any" intrinsic type.
declare const type: ts.Type;if (isIntrinsicAnyType(type)) { // ...} Copy
declare const type: ts.Type;if (isIntrinsicAnyType(type)) { // ...}
Determines whether the given type is the "any" intrinsic type.