iptv/scripts/core/cliTable.ts
2025-03-15 07:31:10 +03:00

21 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()
}
}