@interopio/iocd-cli
Version:
CLI tool for setting up, building and packaging io.Connect Desktop platforms
57 lines • 2.42 kB
TypeScript
/**
* ANSI color utility for terminal output
* Replaces chalk dependency with native ANSI escape codes
*/
export declare const red: (text: string) => string;
export declare const green: (text: string) => string;
export declare const yellow: (text: string) => string;
export declare const blue: (text: string) => string;
export declare const magenta: (text: string) => string;
export declare const cyan: (text: string) => string;
export declare const white: (text: string) => string;
export declare const gray: (text: string) => string;
export declare const grey: (text: string) => string;
export declare const black: (text: string) => string;
export declare const bgRed: (text: string) => string;
export declare const bgGreen: (text: string) => string;
export declare const bgYellow: (text: string) => string;
export declare const bgBlue: (text: string) => string;
export declare const bgMagenta: (text: string) => string;
export declare const bgCyan: (text: string) => string;
export declare const bgWhite: (text: string) => string;
export declare const bgBlack: (text: string) => string;
export declare const bold: (text: string) => string;
export declare const dim: (text: string) => string;
export declare const italic: (text: string) => string;
export declare const underline: (text: string) => string;
export declare const strikethrough: (text: string) => string;
export declare const bgCyanBlack: (text: string) => string;
declare const colors: {
red: (text: string) => string;
green: (text: string) => string;
yellow: (text: string) => string;
blue: (text: string) => string;
magenta: (text: string) => string;
cyan: (text: string) => string;
white: (text: string) => string;
gray: (text: string) => string;
grey: (text: string) => string;
black: (text: string) => string;
bgRed: (text: string) => string;
bgGreen: (text: string) => string;
bgYellow: (text: string) => string;
bgBlue: (text: string) => string;
bgMagenta: (text: string) => string;
bgWhite: (text: string) => string;
bgBlack: (text: string) => string;
bold: (text: string) => string;
dim: (text: string) => string;
italic: (text: string) => string;
underline: (text: string) => string;
strikethrough: (text: string) => string;
bgCyan: {
black: (text: string) => string;
};
};
export default colors;
//# sourceMappingURL=colors.d.ts.map