Comment/docstring structure from TypeDoc

interface CommentNode {
    blockTags?: {
        content: {
            kind: string;
            text: string;
        }[];
        tag: string;
    }[];
    summary?: {
        kind: string;
        text: string;
    }[];
}

Properties

Properties

blockTags?: {
    content: {
        kind: string;
        text: string;
    }[];
    tag: string;
}[]
summary?: {
    kind: string;
    text: string;
}[]