@studyportals/sp-hs-misc
Version:
Miscellaneous code used in HouseStark's projects
18 lines • 533 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.FailedAuthenticationResult = void 0;
/**
* @deprecated Use @studyportals/client-internal-platform-sso
*/
class FailedAuthenticationResult {
__i_failed_authentication_result__ = true;
_reason;
constructor(reason) {
this._reason = reason;
}
get reason() {
return this._reason;
}
}
exports.FailedAuthenticationResult = FailedAuthenticationResult;
//# sourceMappingURL=failed-authentication-result.class.js.map