UNPKG

@egalteam/framework

Version:

Egal

17 lines (16 loc) 487 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.AuthParams = void 0; var AuthParams = /** @class */ (function () { function AuthParams() { } AuthParams.prototype.setAuthParams = function (params) { this.parameters = params; return this.parameters; }; AuthParams.prototype.toObject = function () { return { parameters: this.parameters }; }; return AuthParams; }()); exports.AuthParams = AuthParams;