UNPKG

tezx

Version:

TezX is a modern, ultra-lightweight, and high-performance JavaScript framework built specifically for Bun. It provides a minimal yet powerful API, seamless environment management, and a high-concurrency HTTP engine for building fast, scalable web applicat

3 lines (2 loc) 171 B
export type LogLevel = "info" | "warn" | "error" | "debug" | "success"; export declare const loggerOutput: (level: LogLevel, message: string, ...args: unknown[]) => void;