UNPKG

bunyamin

Version:

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

6 lines (5 loc) 375 B
/// <reference types="node" /> import type { Readable } from 'node:stream'; import type { TraceMergeOptions } from './streams'; export declare function uniteTraceEvents(sourcePaths: string[], options?: TraceMergeOptions): Readable; export declare function uniteTraceEventsToFile(sourcePaths: string[], destinationPath: string, options?: TraceMergeOptions): Promise<unknown>;