declare type TestDataSet = string; declare type UserRole = string; declare enum Enviroment { DEV = "DEV", INT = "INT", MAINT = "MAINT" } declare enum SystemType { BO = "BO", FIORI = "FIORI" } declare class LoginUser { user: string; pw: string; constructor(user: string, pw: string); } declare class ConstantReader { _config: any; _enviroment: Enviroment; constructor(); getURL(sys: SystemType): string; getHost(sys: SystemType): any; getPort(sys: SystemType): any; getURLOption(sys: SystemType): string; getUser(role: UserRole, sys: SystemType): LoginUser; } declare var ui5Constants: ConstantReader; export { TestDataSet, ui5Constants, LoginUser, SystemType, UserRole };