| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | 1× 1× | "use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class Client {
constructor(name, id, secret, allowedScopes, redirectUris, allowForgotPassword, allowRegister) {
this.name = name;
this.id = id;
this.secret = secret;
this.allowedScopes = allowedScopes;
this.redirectUris = redirectUris;
this.allowForgotPassword = allowForgotPassword;
this.allowRegister = allowRegister;
}
}
exports.Client = Client;
//# sourceMappingURL=client.js.map |