DefinitelyTyped/table/table-tests.ts
2017-02-23 07:15:16 -08:00

14 lines
267 B
TypeScript

import * as table from 'table';
const border: table.JoinStruct = table.getBorderCharacters('norc');
const data = [
['first name', 'last name'],
['jane', 'doe'],
['john', 'doe']
];
const config: table.TableUserConfig = { border };
table.table(data, config);