initial commit

This commit is contained in:
Bhavnoor Singh Saroya 2025-01-07 04:45:03 -08:00
commit b25eb51ff0
280 changed files with 178550 additions and 0 deletions

View file

@ -0,0 +1,14 @@
import { BinaryType } from './BinaryType';
export declare const engineEnvVarMap: {
"query-engine": string;
"libquery-engine": string;
"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 {};