Hex Core JS
    Preparing search index...

    Type Alias ColumnProps<T>

    ColumnProps:
        | { colspan?: number; column: T; spanRow?: undefined }
        | { colspan?: undefined; column?: undefined; spanRow: true }

    Type Parameters

    • T extends string = string

    Type Declaration

    • { colspan?: number; column: T; spanRow?: undefined }
      • Optionalcolspan?: number

        The number of columns for the heading to span.

      • column: T

        The name (key) of the column to which this heading belongs. If spanning multiple columns, use the first column.

      • OptionalspanRow?: undefined
    • { colspan?: undefined; column?: undefined; spanRow: true }
      • Optionalcolspan?: undefined
      • Optionalcolumn?: undefined
      • spanRow: true

        Whether the cell should span the entire row.