export interface InstallToolArgs { /** * trust local certificate */ devCert?: DevCertArgs; /** * Install Azure Functions Core Tools */ func?: FuncArgs; /** * Install Dotnet */ dotnet?: boolean; /** * Install Test Tool */ testTool?: TestToolArgs; /** * Install NodeJS */ nodejs?: NodeJSArgs; } interface DevCertArgs { trust: boolean; } interface FuncArgs { version: string | number; symlinkDir?: string; } interface TestToolArgs { version: string | number; symlinkDir: string; } interface NodeJSArgs { symlinkDir: string; } export {}; //# sourceMappingURL=InstallToolArgs.d.ts.map