mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
9 lines
308 B
TypeScript
9 lines
308 B
TypeScript
import { AsyncHandler } from 'asynchronous-handlers';
|
|
import type { HttpRequest } from '../../server/HttpRequest';
|
|
import type { Operation } from '../Operation';
|
|
|
|
/**
|
|
* Converts an incoming HttpRequest to an Operation.
|
|
*/
|
|
export abstract class RequestParser extends AsyncHandler<HttpRequest, Operation> {}
|