MobX Lark
    Preparing search index...

    Interface TextElementStyle

    interface TextElementStyle {
        background_color?: BackgroundColor;
        bold?: boolean;
        comment_ids?: string[];
        inline_code?: boolean;
        italic?: boolean;
        link?: { url: string };
        strikethrough?: boolean;
        text_color?: FontColor;
        underline?: boolean;
    }

    Hierarchy

    • Partial<
          Record<
              "bold"
              | "italic"
              | "strikethrough"
              | "underline"
              | "inline_code",
              boolean,
          >,
      >
      • TextElementStyle
    Index

    Properties

    background_color?: BackgroundColor
    bold?: boolean
    comment_ids?: string[]
    inline_code?: boolean
    italic?: boolean
    link?: { url: string }
    strikethrough?: boolean
    text_color?: FontColor
    underline?: boolean