UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

18 lines (14 loc) • 403 B
export as namespace TripleBeam; export const LEVEL: unique symbol; export const MESSAGE: unique symbol; export const SPLAT: unique symbol; export const configs: Configs; export interface Config { readonly levels: { [k: string]: number }; readonly colors: { [k: string]: string }; } export interface Configs { readonly cli: Config; readonly npm: Config; readonly syslog: Config; }