will-lib
Version:
Library classes
14 lines (13 loc) • 438 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BaseAuthentication = void 0;
const EnvironmentVariable_1 = require("../EnvironmentVariable");
class BaseAuthentication {
getResponseInfo() {
return {
newsUrl: EnvironmentVariable_1.NEWS_URL,
openTab: EnvironmentVariable_1.NEWS_OPEN_TAB
};
}
}
exports.BaseAuthentication = BaseAuthentication;