dev-env-installer
Version:
[](https://travis-ci.org/mulesoft-labs/dev-env-installer)
16 lines (15 loc) • 701 B
TypeScript
export import utils = require("./exportedUtils");
export declare function pullAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export declare function buildAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export declare function testAll(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export declare function installWorkspace(workspaceRootFolder: string, workspaceDescriptorFile: string): void;
export interface DetectedModule {
name: string;
buildCommand: string;
testCommand: string;
fsLocation: string;
dependencies: DetectedModule[];
gitUrl: string;
gitBranch: string;
installTypings: boolean;
}