MCPcopy Create free account
hub / github.com/Effect-TS/effect / isMemberDeclaration

Function isMemberDeclaration

packages/tools/jsdocs/src/Jsdocs.ts:1729–1733  ·  view source on GitHub ↗
(declaration: ts.Declaration)

Source from the content-addressed store, hash-verified

1727}
1728
1729function isMemberDeclaration(declaration: ts.Declaration): boolean {
1730 return ts.isPropertySignature(declaration) || ts.isMethodSignature(declaration) ||
1731 ts.isPropertyDeclaration(declaration) || ts.isMethodDeclaration(declaration) ||
1732 ts.isGetAccessorDeclaration(declaration) || ts.isSetAccessorDeclaration(declaration)
1733}
1734
1735function undocumentedSeeLinkTarget(
1736 symbol: ts.Symbol,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected