UNPKG

firmament-vita

Version:

Firmament module for automating VITA tasks

8 lines (7 loc) 411 B
/// <reference types="node" /> import { VitaSpawn } from "../interfaces/vita-spawn"; import { ChildProcess } from 'child_process'; import { ForceErrorImpl } from "firmament-yargs"; export declare class VitaSpawnImpl extends ForceErrorImpl implements VitaSpawn { spawnIt(cmd: any, args: any, cbStatus: (err: Error, dataChunk: Uint8Array) => void, cbFinal: (err: Error, result: any) => void): ChildProcess; }