firmament-bash
Version:
Firmament module for interpreting commands in JSON files using bash
8 lines (7 loc) • 540 B
TypeScript
import { ForceError, RemoteCatalogEntry } from 'firmament-yargs';
import { ExecutionGraph } from "../custom-typings";
export interface ExecutionGraphResolver extends ForceError {
resolveExecutionGraph(url: string, cb: (err: Error, executionGraph?: ExecutionGraph) => void): any;
resolveExecutionGraphFromCatalogEntry(catalogEntry: RemoteCatalogEntry, cb: (err: Error, executionGraph?: ExecutionGraph) => void): any;
getFullResourcePath(url: string, parentUrl: string, cb: (err: Error, fullResourcePath: string) => void): any;
}