logsdx
Version:
<div align="center"><img alt="logsdx" width="300" src="https://github.com/user-attachments/assets/cc2a3b55-5bfd-44e8-a330-bfa146b50059" /></div>
14 lines (13 loc) • 666 B
TypeScript
import type { ChainableColorFunction } from "./types";
export declare const colors: ChainableColorFunction;
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 dim: (text: string) => string;
export declare const bold: (text: string) => string;
export default colors;