UNPKG

bunyamin

Version:

Bunyan-based logger for Node.js supporting Trace Event format

9 lines (8 loc) 239 B
/// <reference types="node" /> import type { Readable } from 'node:stream'; export declare function jsonlReadFile(filePath: string): Readable; export type JSONLEntry<T = unknown> = { filePath: string; key: number; value: T; };