UNPKG

609 BTypeScriptView Raw
1import * as supports from 'supports-color';
2import chalk from 'chalk';
3export 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};
17export declare const color: typeof CustomColors & typeof chalk;
18export default color;