@eris/image-cli
Version:
CLI wrapper and standalone executable API for @eris/image.
13 lines (12 loc) • 408 B
TypeScript
import { IAllImageOptions } from '@eris/image/dist/types';
export interface IConfigEntry {
id: number;
input: string;
output: string;
action?: 'toBuffer' | 'toAnalysis' | 'toMetadata';
force: boolean;
toDisk: boolean;
toReporter: boolean;
settings: IAllImageOptions;
}
export declare function readAllFrom(pathOrConfig: string | IConfigEntry | IConfigEntry[]): IConfigEntry[];