ultra-telegram-framework
    Preparing search index...

    Interface RichBlockTable

    A table, corresponding to the HTML tag

    .

    interface RichBlockTable {
        caption?: RichText;
        cells: RichBlockTableCell[][];
        is_bordered?: boolean;
        is_striped?: boolean;
        type: string;
    }
    Index

    Properties

    caption?: RichText

    Optional. Caption of the table

    Cells of the table

    is_bordered?: boolean

    Optional. True, if the table has borders

    is_striped?: boolean

    Optional. True, if the table is striped

    type: string

    Type of the block, always "table"