Export Color type
This commit is contained in:
parent
7b9211be50
commit
bcf8ff9fe9
3 changed files with 82 additions and 1 deletions
|
|
@ -21,6 +21,45 @@ export type ColorSupport = {|
|
|||
has16m: boolean
|
||||
|};
|
||||
|
||||
/**
|
||||
* Available colors for use
|
||||
*/
|
||||
export type Color =
|
||||
"black"
|
||||
| "red"
|
||||
| "green"
|
||||
| "yellow"
|
||||
| "blue"
|
||||
| "magenta"
|
||||
| "cyan"
|
||||
| "white"
|
||||
| "gray"
|
||||
| "grey"
|
||||
| "blackBright"
|
||||
| "redBright"
|
||||
| "greenBright"
|
||||
| "yellowBright"
|
||||
| "blueBright"
|
||||
| "magentaBright"
|
||||
| "cyanBright"
|
||||
| "whiteBright"
|
||||
| "bgBlack"
|
||||
| "bgRed"
|
||||
| "bgGreen"
|
||||
| "bgYellow"
|
||||
| "bgBlue"
|
||||
| "bgMagenta"
|
||||
| "bgCyan"
|
||||
| "bgWhite"
|
||||
| "bgBlackBright"
|
||||
| "bgRedBright"
|
||||
| "bgGreenBright"
|
||||
| "bgYellowBright"
|
||||
| "bgBlueBright"
|
||||
| "bgMagentaBright"
|
||||
| "bgCyanBright"
|
||||
| "bgWhiteBright";
|
||||
|
||||
export interface Chalk {
|
||||
(...text: string[]): string,
|
||||
(text: TemplateStringsArray, ...placeholders: mixed[]): string,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue