oclif/cli-ux

Migration issue

Opened this issue · 1 comments

I'm currently using these types import { TableColumn, TableOptions } from 'cli-ux/lib/styled/table'; from v4.93 but I want to use a newer version and I see these types are no longer exported, there are new like Column and Options what's the recommended way to use/import these types ?

I did it this way, which seems to work?

import { table } from 'cli-ux/lib/styled/table';
// ...
const columns: table.Columns<T> = {};