Test if a node is an ObjectTypeDeclaration.
ObjectTypeDeclaration
Whether the given node appears to be an ObjectTypeDeclaration.
declare const node: ts.Node;if (isObjectTypeDeclaration(node)) { // ...} Copy
declare const node: ts.Node;if (isObjectTypeDeclaration(node)) { // ...}
Test if a node is an
ObjectTypeDeclaration
.