UNPKG

intopays

Version:

Intopays - Gateway de integração bancária

9 lines (8 loc) 246 B
type EnvironmentData = { HOST?: string; TOKEN?: string; }; export type EnvironmentType = "production" | "development" | "test"; type Environment = Record<string, EnvironmentData>; export declare const environment: Environment; export {};