mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-24 05:06:02 +08:00
14 lines
189 B
TypeScript
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();
|