UNPKG

@eris/image-cli

Version:

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

11 lines (10 loc) 378 B
import { IConfigEntry } from '../config-entry'; import { IReporter } from './reporter'; export declare class PrettyReporter implements IReporter { private _startTime; started(): void; finished(err?: Error): void; entryStarted(config: IConfigEntry): void; entryFinished(config: IConfigEntry): void; entryErrored(config: IConfigEntry, err: Error): void; }