firmament-vita
Version:
Firmament module for automating VITA tasks
5 lines (4 loc) • 359 B
TypeScript
import { DecryptAndUnTarOptions, DecryptAndUnTarResult, DecryptAndUnTarStatus } from "./vita-options-results";
export interface VitaDecryptUnTar {
process(options: DecryptAndUnTarOptions, cbStatus: (err: Error, decryptAndUnTarResults: DecryptAndUnTarStatus) => void, cbFinal: (err: Error, decryptAndUnTarResults: DecryptAndUnTarResult[]) => void): any;
}