1 | import chalk from 'chalk';
|
2 | import * as supports from 'supports-color';
|
3 | export declare const CustomColors: {
|
4 | supports: typeof supports;
|
5 | gray: (s: string) => string;
|
6 | grey: (s: string) => string;
|
7 | dim: (s: string) => string;
|
8 | attachment: (s: string) => string;
|
9 | addon: (s: string) => string;
|
10 | configVar: (s: string) => string;
|
11 | release: (s: string) => string;
|
12 | cmd: (s: string) => string;
|
13 | pipeline: (s: string) => string;
|
14 | app: (s: string) => string;
|
15 | heroku: (s: string) => string;
|
16 | stripColor: (s: string) => string;
|
17 | };
|
18 | export declare const color: typeof CustomColors & typeof chalk;
|
19 | export default color;
|