UNPKG

@ipp/cli

Version:

An image build orchestrator for the modern web

17 lines (16 loc) 568 B
/** * Image Processing Pipeline - Copyright (c) Marcus Cemes * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ import { Config } from "./init/config"; import { InterruptHandler } from "./lib/interrupt"; import { StateContext } from "./lib/state"; import { UI, UiInstance as UIInstance } from "./ui"; export interface CliContext { interrupt: InterruptHandler; ui: UIInstance; state: StateContext; } export declare function startCli(config: Config, ui?: UI): Promise<void>;