UNPKG

@mccann-hub/json-logger

Version:

A secure, configurable JSON logger built on Winston for Node.js and Deno applications. Supports custom log levels, structured JSON output, sensitive data sanitization, and error handling for multi-environment setups.

7 lines 295 B
type LogValue = string | number | boolean | LogObject | Array<LogValue> | null | undefined; export interface LogObject { [key: string]: LogValue; } declare const _default: (sensitiveKeys?: string[]) => (info: LogObject) => any; export default _default; //# sourceMappingURL=sanitize.d.ts.map