UNPKG

logsdx

Version:

<div align="center"><img alt="logsdx" width="300" src="https://github.com/user-attachments/assets/cc2a3b55-5bfd-44e8-a330-bfa146b50059" /></div>

11 lines (10 loc) 447 B
import type { LogsDX } from "../index"; export interface StreamOptions { quiet?: boolean; output?: string; onLine?: (processedLine: string) => void; onComplete?: () => void; onError?: (error: Error) => void; } export declare function processFileStream(filePath: string, logsDX: LogsDX, options?: StreamOptions): Promise<void>; export declare function processStdinStream(logsDX: LogsDX, options?: StreamOptions): Promise<void>;