Add ansi256 and bgAnsi256 to TypeScript declarations
This commit is contained in:
parent
eef8c8c191
commit
b895250499
3 changed files with 14 additions and 2 deletions
10
index.d.ts
vendored
10
index.d.ts
vendored
|
|
@ -213,6 +213,11 @@ declare namespace chalk {
|
||||||
*/
|
*/
|
||||||
hwb(hue: number, whiteness: number, blackness: number): Chalk;
|
hwb(hue: number, whiteness: number, blackness: number): Chalk;
|
||||||
|
|
||||||
|
/**
|
||||||
|
Use 8-bit unsigned numbers to set text color.
|
||||||
|
*/
|
||||||
|
ansi256(index: number): Chalk;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Use HEX value to set background color.
|
Use HEX value to set background color.
|
||||||
|
|
||||||
|
|
@ -261,6 +266,11 @@ declare namespace chalk {
|
||||||
*/
|
*/
|
||||||
bgHwb(hue: number, whiteness: number, blackness: number): Chalk;
|
bgHwb(hue: number, whiteness: number, blackness: number): Chalk;
|
||||||
|
|
||||||
|
/**
|
||||||
|
Use 8-bit unsigned numbers to set background color.
|
||||||
|
*/
|
||||||
|
bgAnsi256(index: number): Chalk;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Modifier: Resets the current color chain.
|
Modifier: Resets the current color chain.
|
||||||
*/
|
*/
|
||||||
|
|
|
||||||
|
|
@ -49,12 +49,14 @@ expectType<colorReturn>(chalk.rgb(0, 0, 0));
|
||||||
expectType<colorReturn>(chalk.hsl(0, 0, 0));
|
expectType<colorReturn>(chalk.hsl(0, 0, 0));
|
||||||
expectType<colorReturn>(chalk.hsv(0, 0, 0));
|
expectType<colorReturn>(chalk.hsv(0, 0, 0));
|
||||||
expectType<colorReturn>(chalk.hwb(0, 0, 0));
|
expectType<colorReturn>(chalk.hwb(0, 0, 0));
|
||||||
|
expectType<colorReturn>(chalk.ansi256(0));
|
||||||
expectType<colorReturn>(chalk.bgHex('#DEADED'));
|
expectType<colorReturn>(chalk.bgHex('#DEADED'));
|
||||||
expectType<colorReturn>(chalk.bgKeyword('orange'));
|
expectType<colorReturn>(chalk.bgKeyword('orange'));
|
||||||
expectType<colorReturn>(chalk.bgRgb(0, 0, 0));
|
expectType<colorReturn>(chalk.bgRgb(0, 0, 0));
|
||||||
expectType<colorReturn>(chalk.bgHsl(0, 0, 0));
|
expectType<colorReturn>(chalk.bgHsl(0, 0, 0));
|
||||||
expectType<colorReturn>(chalk.bgHsv(0, 0, 0));
|
expectType<colorReturn>(chalk.bgHsv(0, 0, 0));
|
||||||
expectType<colorReturn>(chalk.bgHwb(0, 0, 0));
|
expectType<colorReturn>(chalk.bgHwb(0, 0, 0));
|
||||||
|
expectType<colorReturn>(chalk.bgAnsi256(0));
|
||||||
|
|
||||||
// -- Modifiers --
|
// -- Modifiers --
|
||||||
expectType<string>(chalk.reset('foo'));
|
expectType<string>(chalk.reset('foo'));
|
||||||
|
|
|
||||||
|
|
@ -260,9 +260,9 @@ The following color models can be used:
|
||||||
- [`keyword`](https://www.w3.org/wiki/CSS/Properties/color/keywords) (CSS keywords) - Example: `chalk.keyword('orange').bold('Orange!')`
|
- [`keyword`](https://www.w3.org/wiki/CSS/Properties/color/keywords) (CSS keywords) - Example: `chalk.keyword('orange').bold('Orange!')`
|
||||||
- [`hsl`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsl(32, 100, 50).bold('Orange!')`
|
- [`hsl`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsl(32, 100, 50).bold('Orange!')`
|
||||||
- [`hsv`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsv(32, 100, 100).bold('Orange!')`
|
- [`hsv`](https://en.wikipedia.org/wiki/HSL_and_HSV) - Example: `chalk.hsv(32, 100, 100).bold('Orange!')`
|
||||||
- [`hwb`](https://en.wikipedia.org/wiki/HWB_color_model) - Example: `chalk.hwb(32, 0, 50).bold('Orange!')`
|
- [`hwb`](https://en.wikipedia.org/wiki/HWB_color_model) - Example: `chalk.hwb(32, 0, 50).bold('Orange!')`
|
||||||
- `ansi16`
|
- `ansi16`
|
||||||
- `ansi256`
|
- [`ansi256`](https://en.wikipedia.org/wiki/ANSI_escape_code#8-bit) - Example: `chalk.bgAnsi256(194)('Honeydew, more or less')`
|
||||||
|
|
||||||
|
|
||||||
## Windows
|
## Windows
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue