Skip to content

TableColumn

Describes a single column in table output.

Signatures

ts
interface TableColumn<T extends Record<string, unknown>> {}

Members

Properties

Header label for the column.

ts
header?: string;

key

Property key on the row objects to display in this column.

ts
key: keyof TableColumn.T & string;

See Also

Released under the MIT License.