vira - v26.5.6
    Preparing search index...

    Type Alias ViraTableCell<Headers, CellData>

    An individual cell in ViraTableRow.

    type ViraTableCell<
        Headers extends ViraTableHeaders
        | undefined = undefined,
        CellData = any,
    > = {
        content: HtmlInterpolation;
        data: CellData;
        key: HeaderKey<Headers>;
    }

    Type Parameters

    Index

    Properties

    Properties

    content: HtmlInterpolation
    data: CellData

    The original entry that created this row (in default or vertical table orientation) or column (in horizontal table orientation). This is undefined in header cells.