Type Alias TableColumn<T>

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

Type Parameters

  • T