MCPcopy Create free account
hub / github.com/colbymchenry/codegraph / BlockDecl

Interface BlockDecl

src/extraction/languages/terraform.ts:404–409  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

402}
403
404interface BlockDecl {
405 kind: 'class' | 'module' | 'variable' | 'namespace';
406 name: string;
407 qualifiedName: string;
408 signature: string;
409}
410
411function describeBlock(type: string, labels: string[]): BlockDecl | null {
412 const [first, second] = labels;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected