UNPKG

@accounter/server

Version:

The test suite is split into three Vitest projects for efficiency and isolation:

44 lines (43 loc) 1.14 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: { name: string; apiKey: string; apiSecret: string; } | undefined; readonly greenInvoice: { id: string; secret: string; } | undefined; readonly authorization: { readonly users: string | void; readonly adminBusinessId: string; }; readonly hive: { hiveToken: string; } | undefined; readonly googleDrive: { driveApiKey: string; } | undefined; readonly deel: { apiToken: string; } | undefined; readonly gmail: { clientId: string; clientSecret: string; refreshToken: string; labelPath: string; cloudProjectId: string; appCredentials: string; topicName: string; subscriptionName: string; } | undefined; }>;