UNPKG

@studyportals/sp-hs-misc

Version:

Miscellaneous code used in HouseStark's projects

14 lines 381 B
/** * @deprecated Use @studyportals/client-internal-platform-sso */ class FailedAuthenticationResult { constructor(reason) { this.__i_failed_authentication_result__ = true; this._reason = reason; } get reason() { return this._reason; } } export { FailedAuthenticationResult }; //# sourceMappingURL=failed-authentication-result.class.js.map