UNPKG

@nowarajs/logger

Version:

Type-safe logging library for Bun with advanced TypeScript body intersection, modular strategy pattern, transform streams, and immutable API design.

12 lines (11 loc) 236 B
import type { BaseError } from '@nowarajs/error'; export interface LoggerEvent { error: [ BaseError<{ strategyName: string; object: unknown; error: Error; }> ]; end: []; }