forked from olcxjas-softworks/LarpixClient
fix gitignore again
This commit is contained in:
parent
ce5a1e330b
commit
5da5c2afe2
3329 changed files with 364540 additions and 3 deletions
35
electron/node_modules/@ionic/utils-terminal/dist/format.d.ts
generated
vendored
Normal file
35
electron/node_modules/@ionic/utils-terminal/dist/format.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,35 @@
|
|||
import sliceAnsi = require('slice-ansi');
|
||||
import stringWidth = require('string-width');
|
||||
import stripAnsi = require('strip-ansi');
|
||||
export { sliceAnsi, stringWidth, stripAnsi };
|
||||
export declare const TTY_WIDTH: number;
|
||||
export declare function indent(n?: number): string;
|
||||
export interface WordWrapOptions {
|
||||
width?: number;
|
||||
indentation?: number;
|
||||
append?: string;
|
||||
}
|
||||
export declare function wordWrap(msg: string, { width, indentation, append }: WordWrapOptions): string;
|
||||
export declare function prettyPath(p: string): string;
|
||||
export declare function expandPath(p: string): string;
|
||||
export declare function generateFillSpaceStringList(list: string[], optimalLength?: number, fillCharacter?: string): string[];
|
||||
export interface ColumnarOptions {
|
||||
hsep?: string;
|
||||
vsep?: string;
|
||||
headers?: string[];
|
||||
}
|
||||
/**
|
||||
* Basic CLI table generator with support for ANSI colors.
|
||||
*
|
||||
* @param rows 2-dimensional matrix containing cells. An array of columns,
|
||||
* which are arrays of cells.
|
||||
* @param options.vsep The vertical separator character, default is
|
||||
* `chalk.dim('|')`. Supply an empty string to hide
|
||||
* the separator altogether.
|
||||
* @param options.hsep The horizontal separator character, default is
|
||||
* `chalk.dim('-')`. This is used under the headers,
|
||||
* if supplied. Supply an empty string to hide the
|
||||
* separator altogether.
|
||||
* @param options.headers An array of header cells.
|
||||
*/
|
||||
export declare function columnar(rows: string[][], { hsep, vsep, headers }: ColumnarOptions): string;
|
||||
Loading…
Add table
Add a link
Reference in a new issue