Files
DefinitelyTyped/easy-table/easy-table-0.2.0-tests.ts
2015-10-09 07:32:32 +02:00

15 lines
230 B
TypeScript

/// <reference path="easy-table.d.ts" />
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();