mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-14 17:02:49 +03:00
a0f4f00bfd
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/5699 Co-authored-by: Rishichandra Wawhal <27274869+wawhal@users.noreply.github.com> Co-authored-by: Daniel Harvey <4729125+danieljharvey@users.noreply.github.com> GitOrigin-RevId: 00f2c5d25012b21f4e8763ef578598a3a11896e4
31 lines
625 B
TypeScript
31 lines
625 B
TypeScript
interface Env {
|
|
adminSecret: string;
|
|
apiHost: string;
|
|
apiPort: string;
|
|
assetsPath: string;
|
|
assetsVersion: string;
|
|
assetVersion: string;
|
|
cdnAssets: boolean;
|
|
consoleAssetVersion: string;
|
|
consoleMode: string;
|
|
consolePath: string;
|
|
dataApiUrl: string;
|
|
enableTelemetry: boolean;
|
|
featuresCompatibility: string;
|
|
isAdminSecretSet: boolean;
|
|
isproduction: boolean;
|
|
nodeEnv: string;
|
|
serverVersion: string;
|
|
telemetryTopic: string;
|
|
urlPrefix: string;
|
|
|
|
/**
|
|
* Corresponds to the HASURA_CONSOLE_SENTRY_DSN environment variable
|
|
*/
|
|
consoleSentryDsn: string;
|
|
}
|
|
|
|
interface Window {
|
|
__env: Env;
|
|
}
|