Files
2026-02-20 16:06:40 +09:00

13 lines
440 B
TypeScript

import { BinaryType } from './BinaryType';
export declare const engineEnvVarMap: {
"schema-engine": string;
};
export declare const deprecatedEnvVarMap: Partial<typeof engineEnvVarMap>;
type PathFromEnvValue = {
path: string;
fromEnvVar: string;
};
export declare function getBinaryEnvVarPath(binaryName: BinaryType): PathFromEnvValue | null;
export declare function allEngineEnvVarsSet(binaries: string[]): boolean;
export {};