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
24
electron/node_modules/@ionic/cli-framework-output/dist/index.d.ts
generated
vendored
Normal file
24
electron/node_modules/@ionic/cli-framework-output/dist/index.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
import { TTY_WIDTH, indent, sliceAnsi, stringWidth, stripAnsi, wordWrap } from '@ionic/utils-terminal';
|
||||
import { Logger, CreateTaggedFormatterOptions } from './logger';
|
||||
import { OutputStrategy } from './output';
|
||||
export { TTY_WIDTH, indent, sliceAnsi, stringWidth, stripAnsi, wordWrap };
|
||||
export * from './colors';
|
||||
export * from './logger';
|
||||
export * from './output';
|
||||
export * from './tasks';
|
||||
export interface CreateDefaultLoggerOptions {
|
||||
/**
|
||||
* Specify a custom output strategy to use for the logger.
|
||||
*
|
||||
* By default, the logger uses a output strategy with process.stdout and no colors.
|
||||
*/
|
||||
output?: OutputStrategy;
|
||||
/**
|
||||
* Specify custom logger formatter options.
|
||||
*/
|
||||
formatterOptions?: CreateTaggedFormatterOptions;
|
||||
}
|
||||
/**
|
||||
* Creates a logger instance with good defaults.
|
||||
*/
|
||||
export declare function createDefaultLogger({ output, formatterOptions }?: CreateDefaultLoggerOptions): Logger;
|
||||
Loading…
Add table
Add a link
Reference in a new issue