Parsed node after traversal and extraction from jdoc.json

interface ParsedNode {
    children: ParsedNode[];
    docstring: string;
    filePath: string;
    id: number;
    kind: number;
    name: string;
    signature?: SignatureNode;
    sources: SourceLocation[];
    type?: TypeNode;
}

Properties

children: ParsedNode[]
docstring: string
filePath: string
id: number
kind: number
name: string
signature?: SignatureNode
sources: SourceLocation[]
type?: TypeNode