UNPKG

@amplitude/ampli

Version:

Amplitude CLI

28 lines (27 loc) 685 B
import { Zone } from './types'; export declare const ZONE_SETTINGS: Record<Zone, { apiUrl: string; webUrl: string; oAuthHost: string; oAuthClientId: string; }>; export declare const APP_SETTINGS: Readonly<{ localDevelopment: boolean; app: { environment: string; version: any; }; ampli: (zone: Zone) => { apiUrl: string; webUrl: string; }; sentry: { enabled: boolean; dsn: string | undefined; release: string; environment: string; }; NODE_VERSION_MINIMUM: number; }>; export declare const OAuthAccessTokenTTLHours = 1; export declare const OAuthRefreshTokenTTLHours = 8760;