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