firmament-vita
Version:
Firmament module for automating VITA tasks
10 lines (9 loc) • 421 B
TypeScript
import { PostalAgent } from '../interfaces/postal-agent';
import { ForceErrorImpl, IPostal, CommandUtil } from 'firmament-yargs';
import { VitaTasks } from '../interfaces/vita-tasks';
export declare class PostalAgentImpl extends ForceErrorImpl implements PostalAgent {
private postal;
private commandUtil;
private vitaTasks;
constructor(postal: IPostal, commandUtil: CommandUtil, vitaTasks: VitaTasks);
}