fix gitignore again
This commit is contained in:
parent
ce5a1e330b
commit
5da5c2afe2
3329 changed files with 364540 additions and 3 deletions
19
electron/node_modules/@ionic/utils-terminal/dist/ansi.d.ts
generated
vendored
Normal file
19
electron/node_modules/@ionic/utils-terminal/dist/ansi.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
* ANSI escape codes (WIP)
|
||||
*
|
||||
* @see https://en.wikipedia.org/wiki/ANSI_escape_code
|
||||
*/
|
||||
export declare class EscapeCode {
|
||||
static readonly cursorLeft: () => string;
|
||||
static readonly cursorUp: (count?: number) => string;
|
||||
static readonly cursorDown: (count?: number) => string;
|
||||
static readonly cursorForward: (count?: number) => string;
|
||||
static readonly cursorBackward: (count?: number) => string;
|
||||
static readonly cursorHide: () => string;
|
||||
static readonly cursorShow: () => string;
|
||||
static readonly eraseLine: () => string;
|
||||
static readonly eraseLines: (count: number) => string;
|
||||
static readonly eraseUp: () => string;
|
||||
static readonly eraseDown: () => string;
|
||||
static readonly eraseScreen: () => string;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue