Type alias TableColumn

TableColumn: { align?: "left" | "center" | "right"; field?: string; name: string }

A table column header.

Type declaration

  • Optional align?: "left" | "center" | "right"

    The horizontal alignment of the entire column.

  • Optional field?: string

    The property which the column should use when pulling data from a given row. If not specified, then name will be used as the field.

  • name: string

    The name of the column.

Generated using TypeDoc