|
-
- declare type ForegroundColor =
- | 'black'
- | 'red'
- | 'green'
- | 'yellow'
- | 'blue'
- | 'magenta'
- | 'cyan'
- | 'white'
- | 'gray'
- | 'grey'
- | 'blackBright'
- | 'redBright'
- | 'greenBright'
- | 'yellowBright'
- | 'blueBright'
- | 'magentaBright'
- | 'cyanBright'
- | 'whiteBright';
-
-
- declare type BackgroundColor =
- | 'bgBlack'
- | 'bgRed'
- | 'bgGreen'
- | 'bgYellow'
- | 'bgBlue'
- | 'bgMagenta'
- | 'bgCyan'
- | 'bgWhite'
- | 'bgGray'
- | 'bgGrey'
- | 'bgBlackBright'
- | 'bgRedBright'
- | 'bgGreenBright'
- | 'bgYellowBright'
- | 'bgBlueBright'
- | 'bgMagentaBright'
- | 'bgCyanBright'
- | 'bgWhiteBright';
-
-
- declare type Color = ForegroundColor | BackgroundColor;
-
- declare type Modifiers =
- | 'reset'
- | 'bold'
- | 'dim'
- | 'italic'
- | 'underline'
- | 'inverse'
- | 'hidden'
- | 'strikethrough'
- | 'visible';
-
- declare namespace chalk {
-
-
- type Level = 0 | 1 | 2 | 3;
-
- interface Options {
-
-
- level?: Level;
- }
-
-
-
- type Instance = new (options?: Options) => Chalk;
-
-
-
- interface ColorSupport {
-
-
- level: Level;
-
-
-
- hasBasic: boolean;
-
-
-
- has256: boolean;
-
-
-
- has16m: boolean;
- }
-
- interface ChalkFunction {
-
-
- (text: TemplateStringsArray, ...placeholders: unknown[]): string;
-
- (...text: unknown[]): string;
- }
-
- interface Chalk extends ChalkFunction {
-
-
- Instance: Instance;
-
-
-
- level: Level;
-
-
-
- hex(color: string): Chalk;
-
-
-
- keyword(color: string): Chalk;
-
-
-
- rgb(red: number, green: number, blue: number): Chalk;
-
-
-
- hsl(hue: number, saturation: number, lightness: number): Chalk;
-
-
-
- hsv(hue: number, saturation: number, value: number): Chalk;
-
-
-
- hwb(hue: number, whiteness: number, blackness: number): Chalk;
-
-
-
- ansi(code: number): Chalk;
-
-
-
- ansi256(index: number): Chalk;
-
-
-
- bgHex(color: string): Chalk;
-
-
-
- bgKeyword(color: string): Chalk;
-
-
-
- bgRgb(red: number, green: number, blue: number): Chalk;
-
-
-
- bgHsl(hue: number, saturation: number, lightness: number): Chalk;
-
-
-
- bgHsv(hue: number, saturation: number, value: number): Chalk;
-
-
-
- bgHwb(hue: number, whiteness: number, blackness: number): Chalk;
-
-
-
- bgAnsi(code: number): Chalk;
-
-
-
- bgAnsi256(index: number): Chalk;
-
-
-
- readonly reset: Chalk;
-
-
-
- readonly bold: Chalk;
-
-
-
- readonly dim: Chalk;
-
-
-
- readonly italic: Chalk;
-
-
-
- readonly underline: Chalk;
-
-
-
- readonly inverse: Chalk;
-
-
-
- readonly hidden: Chalk;
-
-
-
- readonly strikethrough: Chalk;
-
-
-
- readonly visible: Chalk;
-
- readonly black: Chalk;
- readonly red: Chalk;
- readonly green: Chalk;
- readonly yellow: Chalk;
- readonly blue: Chalk;
- readonly magenta: Chalk;
- readonly cyan: Chalk;
- readonly white: Chalk;
-
-
-
- readonly gray: Chalk;
-
-
-
- readonly grey: Chalk;
-
- readonly blackBright: Chalk;
- readonly redBright: Chalk;
- readonly greenBright: Chalk;
- readonly yellowBright: Chalk;
- readonly blueBright: Chalk;
- readonly magentaBright: Chalk;
- readonly cyanBright: Chalk;
- readonly whiteBright: Chalk;
-
- readonly bgBlack: Chalk;
- readonly bgRed: Chalk;
- readonly bgGreen: Chalk;
- readonly bgYellow: Chalk;
- readonly bgBlue: Chalk;
- readonly bgMagenta: Chalk;
- readonly bgCyan: Chalk;
- readonly bgWhite: Chalk;
-
-
-
- readonly bgGray: Chalk;
-
-
-
- readonly bgGrey: Chalk;
-
- readonly bgBlackBright: Chalk;
- readonly bgRedBright: Chalk;
- readonly bgGreenBright: Chalk;
- readonly bgYellowBright: Chalk;
- readonly bgBlueBright: Chalk;
- readonly bgMagentaBright: Chalk;
- readonly bgCyanBright: Chalk;
- readonly bgWhiteBright: Chalk;
- }
- }
-
-
- declare const chalk: chalk.Chalk & chalk.ChalkFunction & {
- supportsColor: chalk.ColorSupport | false;
- Level: chalk.Level;
- Color: Color;
- ForegroundColor: ForegroundColor;
- BackgroundColor: BackgroundColor;
- Modifiers: Modifiers;
- stderr: chalk.Chalk & {supportsColor: chalk.ColorSupport | false};
- };
-
- export = chalk;
|