aboutsummaryrefslogtreecommitdiff
path: root/src/helpers/table/index.ts
blob: bf29228d9f2b2126d96a12ac9272ba2fb788d68c (plain)
1
2
3
4
5
6
7
8
9
import Table from './src/console-table-printer';
import {
  printSimpleTable as printTable,
  renderSimpleTable as renderTable
} from './src/internalTable/internal-table-printer';

import { COLOR, ALIGNMENT } from './src/models/external-table';

export { Table, printTable, renderTable, COLOR, ALIGNMENT };