UNPKG

@ivandt/json-rules

Version:

Rule parsing engine for JSON rules

15 lines (14 loc) 400 B
export declare class Logger { static debug(...opts: any[]): void; /** * Formats text with color. * @param text The text to colorize. * @param color The color to apply. */ static color(text: unknown, color: "r" | "g" | "b" | "y" | "m"): string; /** * Formats text as bold. * @param text The text to bold. */ static bold(text: unknown): string; }