UNPKG

firmament-vita

Version:

Firmament module for automating VITA tasks

6 lines (5 loc) 255 B
/// <reference types="node" /> import { ChildProcess } from 'child_process'; export interface VitaSpawn { spawnIt(cmd: any, args: any, cbStatus: (err: Error, dataChunk: Uint8Array) => void, cbFinal: (err: Error, result: any) => void): ChildProcess; }