UNPKG

@eris/image-cli

Version:

CLI wrapper and standalone executable API for @eris/image.

9 lines (8 loc) 298 B
import { IConfigEntry } from '../config-entry'; export interface IReporter { started(): void; finished(err?: Error): void; entryStarted(config: IConfigEntry): void; entryFinished(config: IConfigEntry, result?: any): void; entryErrored(config: IConfigEntry, err: Error): void; }