NeahFront5/node_modules/@prisma/fetch-engine/dist/env.d.ts
2025-04-10 11:30:00 +02:00

15 lines
499 B
TypeScript

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 {};