Type alias CommentDisplayPart

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

Represents a parsed piece of a comment.

Type declaration

  • kind: "text"
  • text: string

Type declaration

  • kind: "code"
  • text: string