mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
16 lines
231 B
TypeScript
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();
|
|
|