You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

console-table-printer

Package Overview
Dependencies
Maintainers
1
Versions
274
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

console-table-printer - npm Package Compare versions

Comparing version

to
2.14.6

2

dist/src/console-table-printer.d.ts

@@ -11,5 +11,5 @@ import TableInternal from './internalTable/internal-table';

addRow(text: Dictionary, rowOptions?: RowOptionsRaw): this;
addRows(toBeInsertedRows: any, rowOptions?: RowOptionsRaw): this;
addRows(toBeInsertedRows: Dictionary[], rowOptions?: RowOptionsRaw): this;
printTable(): void;
render(): string;
}

@@ -0,5 +1,6 @@

import { Dictionary } from '../models/common';
import { ComplexOptions } from '../models/external-table';
import TableInternal from './internal-table';
export declare const renderTable: (table: TableInternal) => string;
export declare const renderSimpleTable: (rows: any[], tableOptions?: ComplexOptions) => string;
export declare const printSimpleTable: (rows: any[], tableOptions?: ComplexOptions) => void;
export declare const renderSimpleTable: (rows: Dictionary[], tableOptions?: ComplexOptions) => string;
export declare const printSimpleTable: (rows: Dictionary[], tableOptions?: ComplexOptions) => void;

@@ -15,3 +15,3 @@ import { CharLengthDict, Dictionary, Row } from '../models/common';

disabledColumns: string[];
computedColumns: any[];
computedColumns: ComputedColumn[];
rowSeparator: boolean;

@@ -18,0 +18,0 @@ colorMap: ColorMap;

{
"name": "console-table-printer",
"version": "2.14.5",
"version": "2.14.6",
"repository": "github:console-table-printer/console-table-printer",

@@ -5,0 +5,0 @@ "description": "Printing pretty tables on console log",