Type alias TableColumn<T>

TableColumn<T>: {
    [column in keyof T]: {
        color?: ForegroundColor | "dim";
        header?: string;
    }
}

Type Parameters

  • T