export type LogColor = | "reset" | "red" | "green" | "yellow" | "blue" | "magenta" | "cyan" | "black" // Bright foreground colors | "brightRed" | "brightGreen" | "brightYellow" | "brightBlue" | "brightMagenta" | "brightCyan" | "brightWhite" // Background colors | "bgRed" | "bgGreen" | "bgYellow" | "bgBlue" | "bgMagenta" | "bgCyan" | "bgWhite" | "bgBlack" // Bright background colors | "bgBrightRed" | "bgBrightGreen" | "bgBrightYellow" | "bgBrightBlue" | "bgBrightMagenta" | "bgBrightCyan" | "bgBrightWhite"; export type PrintLn = { helper: string; data: T; color?: LogColor; showFunctionOrigin?: boolean; };