Interface RichTextIcon

A small image inside the text. Subtype of RichText.

interface RichTextIcon {
    @type: "richTextIcon";
    document: Document;
    height: number;
    width: number;
}

Properties

@type: "richTextIcon"
document: Document

The image represented as a document. The image can be in GIF, JPEG or PNG format.

height: number

Height of a bounding box in which the image must be shown; 0 if unknown.

width: number

Width of a bounding box in which the image must be shown; 0 if unknown.