- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
15 lines
499 B
TypeScript
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 {};
|