UNPKG

@eris/image-cli

Version:

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

10 lines (8 loc) 281 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 }