Files

7 lines
239 B
TypeScript
Raw Permalink Normal View History

2026-03-25 14:14:07 +01:00
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;