Add capacitorjs runtime
This commit is contained in:
parent
d0ece489ee
commit
f90c0e6c40
8362 changed files with 1502407 additions and 1 deletions
19
node_modules/@ionic/utils-terminal/dist/ansi.d.ts
generated
vendored
Normal file
19
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