UNPKG

oidc-client-rx

Version:

ReactiveX enhanced OIDC and OAuth2 protocol support for browser-based JavaScript applications

14 lines 739 B
import { Observable } from "rxjs"; import type { OpenIdConfiguration } from "../config/openid-configuration"; import type { CallbackContext } from "../flows/callback-context"; export declare class CallbackService { private readonly urlService; private readonly flowHelper; private readonly implicitFlowCallbackService; private readonly codeFlowCallbackService; private readonly stsCallbackInternal$; get stsCallback$(): Observable<void>; isCallback(currentUrl: string, config?: OpenIdConfiguration): boolean; handleCallbackAndFireEvents(currentCallbackUrl: string, config: OpenIdConfiguration, allConfigs: OpenIdConfiguration[]): Observable<CallbackContext>; } //# sourceMappingURL=callback.service.d.ts.map