/* eslint-disable @typescript-eslint/naming-convention */ declare global { declare namespace NodeJS { interface Global { TYPEORM_DATABASE?: string; } interface ProcessEnv { /** * Credential for other services to access the API. */ ROOT_API_KEY_CLIENT_ID: string; /** * Credential for other services to access the API. */ ROOT_API_KEY_CLIENT_SECRET: string; /** * Job queue port. */ JOB_QUEUE_PORT: string; /** * Job queue host. */ JOB_QUEUE_HOST: string; /** * Job queue password. */ JOB_QUEUE_PASSWORD?: string; /** * Whether syncing to algolia on upsert is enabled */ ALGOLIA_SYNCING_ENABLED?: string; } } } export {};