Files
DefinitelyTyped/easy-table/easy-table-0.2.0-tests.ts
2016-04-27 21:53:46 -07:00

14 lines
189 B
TypeScript

import EasyTable = require('easy-table');
var table = new EasyTable();
table.cell('aa', 1);
table.cell('bb',1);
table.newRow();
table.cell('aa', 1);
table.cell('bb',1);
table.print();