1 | /// <reference types="node" />
|
2 | import { SpawnOptions } from "child_process";
|
3 | export declare function executeAppBuilderAsJson<T>(args: Array<string>): Promise<T>;
|
4 | export declare function executeAppBuilderAndWriteJson(args: Array<string>, data: any, extraOptions?: SpawnOptions): Promise<string>;
|
5 | export declare function objectToArgs(to: Array<string>, argNameToValue: {
|
6 | [key: string]: string | null;
|
7 | }): void;
|