summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/cli-table3/index.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/cli-table3/index.d.ts')
-rw-r--r--deps/npm/node_modules/cli-table3/index.d.ts5
1 files changed, 1 insertions, 4 deletions
diff --git a/deps/npm/node_modules/cli-table3/index.d.ts b/deps/npm/node_modules/cli-table3/index.d.ts
index bdf17e270e..aa94b7440d 100644
--- a/deps/npm/node_modules/cli-table3/index.d.ts
+++ b/deps/npm/node_modules/cli-table3/index.d.ts
@@ -68,18 +68,15 @@ declare namespace CliTable3 {
readonly width: number;
}
- type Table = HorizontalTable | VerticalTable | CrossTable;
+ type Table = GenericTable<HorizontalTableRow|VerticalTableRow|CrossTableRow>;
type Cell = CellValue | CellOptions;
- type HorizontalTable = GenericTable<HorizontalTableRow>;
type HorizontalTableRow = Cell[];
- type VerticalTable = GenericTable<VerticalTableRow>;
interface VerticalTableRow {
[name: string]: Cell;
}
- type CrossTable = GenericTable<CrossTableRow>;
interface CrossTableRow {
[name: string]: Cell[];
}