@solid/community-server
Version:
Community Solid Server: an open and modular implementation of the Solid specifications
13 lines (12 loc) • 559 B
TypeScript
import type { HttpHandlerInput } from '../server/HttpHandler';
import { HttpHandler } from '../server/HttpHandler';
import type { ProviderFactory } from './configuration/ProviderFactory';
/**
* HTTP handler that redirects all requests to the OIDC library.
*/
export declare class OidcHttpHandler extends HttpHandler {
protected readonly logger: import("global-logger-factory").Logger<unknown>;
private readonly providerFactory;
constructor(providerFactory: ProviderFactory);
handle({ request, response }: HttpHandlerInput): Promise<void>;
}