How to use the getNameOfDeclaration function from typescript

Find comprehensive JavaScript typescript.getNameOfDeclaration code examples handpicked from public code repositorys.

110
111
112
113
114
115
116
117
118
119
  if (tag.tagName.escapedText === extensionsTag) {
    return;
  }
}

const declarationName = ts.getNameOfDeclaration(declaration.parent)
const name = declarationName ? declarationName.getFullText() : ""
context.report({
  node,
  messageId: "namespace",
fork icon0
star icon0
watch icon2

+ 23 other calls in file

Other functions in typescript

Sorted by popularity

function icon

typescript.SyntaxKind is the most popular function in typescript (82777 examples)