import { LogEntry } from '../types'; export interface IConsoleCapture { start(callback: (entry: LogEntry) => void): void; stop(): void; captureError(error: Error): LogEntry; } //# sourceMappingURL=IConsoleCapture.d.ts.map