UNPKG

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