iptv/scripts/core/cliTable.ts

22 lines
300 B
TypeScript

import { Table } from 'console-table-printer'
export class CliTable {
table: Table
constructor(options?) {
this.table = new Table(options)
}
append(row) {
this.table.addRow(row)
}
render() {
this.table.printTable()
}
toString() {
return this.table.render()
}
}