interface Header {
    key: string;
    label: string;
    sortable?: boolean;
    sorted?: SortDirection;
    type?:
        | "string"
        | "number"
        | "structure"
        | "stats";
}

Properties

key: string
label: string
sortable?: boolean
sorted?: SortDirection
type?:
    | "string"
    | "number"
    | "structure"
    | "stats"