UNPKG

@accounter/server

Version:

35 lines (34 loc) 1.11 kB
import { InjectionToken } from 'graphql-modules'; export declare const ENVIRONMENT: InjectionToken<{ readonly postgres: { readonly host: string; readonly port: number; readonly db: string; readonly user: string; readonly password: string; readonly ssl: boolean; }; readonly cloudinary: { readonly name: string | undefined; readonly apiKey: string | undefined; readonly apiSecret: string | undefined; }; readonly greenInvoice: { readonly id: string | undefined; readonly secret: string | undefined; }; readonly authorization: { readonly users: string | void | undefined; readonly adminBusinessId: string; }; readonly hive: { readonly hiveToken: string | undefined; readonly hiveGatewayPort: number; readonly hiveSubgraphPort: number; readonly hiveDevRegistryToken: string | undefined; readonly hiveStagingRegistryToken: string | undefined; }; readonly google: { readonly driveApiKey: string | undefined; }; }>;