NeahNew/node_modules/app-builder-lib/out/util/bundledTool.d.ts
2025-05-06 22:43:27 +02:00

8 lines
278 B
TypeScript

import { Nullish } from "builder-util-runtime";
export interface ToolInfo {
path: string;
env?: any;
}
export declare function computeEnv(oldValue: string | Nullish, newValues: Array<string>): string;
export declare function computeToolEnv(libPath: Array<string>): any;