@juparog/print-table
Version:
print-table is a simple library that allows you to print beautiful and customizable tables in the console using ANSI escape codes. It is ideal for displaying tabular data in a clear and visually appealing way.
34 lines (33 loc) • 880 B
TypeScript
import { TableTheme } from './types';
/**
* Theme for classic box table. (default theme)
*/
export declare const CLASSIC_BOX_THEME: TableTheme;
/**
* Theme for a rounded box table.
*/
export declare const ROUNDED_BOX_THEME: TableTheme;
/**
* Theme for a table with double line borders.
*/
export declare const DOUBLE_LINE_THEME: TableTheme;
/**
* Theme for a table with double and single lines borders.
*/
export declare const DOUBLE_MIX_LINE_THEME: TableTheme;
/**
* Theme for a table with star borders.
*/
export declare const STAR_BORDERS_THEME: TableTheme;
/**
* Theme for table with round edges.
*/
export declare const ROUND_EDGES_THEME: TableTheme;
/**
* Theme for a table with curved lines as border.
*/
export declare const CURVED_LINES_THEME: TableTheme;
/**
* Theme for table with block borders.
*/
export declare const BLOCK_BORDERS_THEME: TableTheme;