Type Alias CommentDisplayPart

CommentDisplayPart:
    | {
        kind: "text";
        text: string;
    }
    | {
        kind: "code";
        text: string;
    }
    | Models.InlineTagDisplayPart
    | Models.RelativeLinkDisplayPart

Represents a parsed piece of a comment.