consolecolor/dist/index.d.ts
2017-01-21 18:26:22 +01:00

15 lines
464 B
TypeScript

import 'typings-global';
/**
* all the color names that are available for proper xterm translation
*/
export declare type TColorName = 'black' | 'black' | 'blue' | 'brown' | 'cyan' | 'green' | 'orange' | 'pink' | 'red' | 'white';
export interface IRGB {
r: number;
b: number;
g: number;
}
/**
* color a string with xterm
*/
export declare let coloredString: (stringArg: string, colorFontArg: TColorName, colorBackgroundArg?: TColorName) => string;