DefinitelyTyped/easy-table/easy-table-tests.ts
2014-06-19 21:01:56 +02:00

16 lines
231 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();