supamend
Version:
Pluggable DevSecOps Security Scanner with 10+ scanners and multiple reporting channels
30 lines • 1.11 kB
TypeScript
declare const chalk: {
red: (text: string) => string;
green: (text: string) => string;
blue: (text: string) => string;
yellow: (text: string) => string;
cyan: (text: string) => string;
magenta: (text: string) => string;
white: (text: string) => string;
gray: (text: string) => string;
bold: (text: string) => string;
dim: (text: string) => string;
underline: (text: string) => string;
reset: (text: string) => string;
chain: {
red: (text: string) => /*elided*/ any;
green: (text: string) => /*elided*/ any;
blue: (text: string) => /*elided*/ any;
yellow: (text: string) => /*elided*/ any;
cyan: (text: string) => /*elided*/ any;
magenta: (text: string) => /*elided*/ any;
white: (text: string) => string;
gray: (text: string) => string;
bold: (text: string) => /*elided*/ any;
dim: (text: string) => /*elided*/ any;
underline: (text: string) => /*elided*/ any;
reset: (text: string) => string;
};
};
export default chalk;
//# sourceMappingURL=chalk.d.ts.map