Files
2026-02-27 22:46:14 +01:00

7 lines
239 B
TypeScript

export interface ToolInfo {
path: string;
env?: any;
}
export declare function computeEnv(oldValue: string | null | undefined, newValues: Array<string>): string;
export declare function computeToolEnv(libPath: Array<string>): any;