UNPKG

@solid/community-server

Version:

Community Solid Server: an open and modular implementation of the Solid specifications

13 lines (12 loc) 369 B
import { AsyncHandler } from 'asynchronous-handlers'; import type { HttpRequest } from './HttpRequest'; import type { HttpResponse } from './HttpResponse'; export interface HttpHandlerInput { request: HttpRequest; response: HttpResponse; } /** * An HTTP request handler. */ export declare abstract class HttpHandler extends AsyncHandler<HttpHandlerInput> { }