import { Node } from"ts-morph";
exportfunctionisShorthandAmbientModule(node) {
// Shorthand ambient modules have no body (e.g., `declare module 'foo';`)// and their name includes the quotes (e.g., name === "'foo'").returnNode.isModuleDeclaration(node) && !node.hasBody();
}