method Node.hasBodyimport { Node } from "https://dotland.deno.dev/x/ts_morph@21.0.0/mod.ts"; hasBody<T extends Node>(node: T): node is T & { getBody(): Node; }Gets if the node has a body. Gets if the node has a body. Type ParametersT extends NodeParametersnode: T Node to check. Returnsnode is T & { getBody(): Node; }