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