UNPKG

@affinidi-tdk/common

Version:

Affinidi TDK Common library with shared utils

13 lines (12 loc) 395 B
export declare enum Environment { LOCAL = "local", DEVELOPMENT = "dev", PRODUCTION = "prod" } export declare class EnvironmentUtils { static fetchEnvironment(): Environment; static fetchApiGwUrl(env?: Environment): string; static fetchElementsAuthTokenUrl(env?: Environment): string; static fetchRegion(): string; static fetchIotUrl(env?: Environment): string; }