(opts: {
readonly format: string
readonly data: TRow
})
| 59 | } |
| 60 | |
| 61 | export function table<TRow extends TablePrintable>(opts: { |
| 62 | readonly format: string |
| 63 | readonly data: TRow |
| 64 | }): TableOutput<TRow> { |
| 65 | return { kind: 'table', ...opts } |
| 66 | } |
| 67 | |
| 68 | export function formatted<TData extends FormattedPrintable>(opts: { |
| 69 | readonly format: string |
no outgoing calls