UNPKG

@rollercoaster-dev/rd-logger

Version:

A neurodivergent-friendly logger for Rollercoaster.dev projects

11 lines 357 B
import type { Formatter } from "./formatter.interface.js"; /** * JSON formatter for the logger */ export declare class JsonFormatter implements Formatter { /** * Format a log message as JSON */ format(level: string, message: string, timestamp: string, context: Record<string, any>): string; } //# sourceMappingURL=json.formatter.d.ts.map