Interface TextBlockNoIndent

A text block of a type that doesn't allow indentation.

interface TextBlockNoIndent {
    formatting?: InlineFormat[];
    subtype?:
        | "heading1"
        | "heading2"
        | "quirky"
        | "quote"
        | "chat";
    text: string;
    type: "text";
}

Hierarchy

  • TextBlockBase
    • TextBlockNoIndent

Properties

formatting?: InlineFormat[]

Inline formatting for this text.

subtype?:
    | "heading1"
    | "heading2"
    | "quirky"
    | "quote"
    | "chat"

The subtype of text block.

text: string

The text to use inside this block.

type