oidc-client
Version:
OpenID Connect (OIDC) & OAuth2 client library
18 lines (12 loc) • 538 B
JavaScript
// Copyright (c) Brock Allen & Dominick Baier. All rights reserved.
// Licensed under the Apache License, Version 2.0. See LICENSE in the project root for license information.
import { UrlUtility } from './UrlUtility.js';
export class SignoutResponse {
constructor(url) {
var values = UrlUtility.parseUrlFragment(url, "?");
this.error = values.error;
this.error_description = values.error_description;
this.error_uri = values.error_uri;
this.state = values.state;
}
}