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