UNPKG

hook-engine

Version:

Production-grade webhook engine with comprehensive adapter support, security, reliability, structured logging, and CLI tools.

12 lines (11 loc) 308 B
/** * Legacy logger - redirects to structured logger * @deprecated Use structured-logger instead */ export declare function logger(event: { id: string; type: string; timestamp: number; raw: unknown; }): void; export { logger as structuredLogger, createLogger } from './structured-logger';