mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
6 lines
283 B
TypeScript
6 lines
283 B
TypeScript
import { AsyncHandler } from '../../util/AsyncHandler';
|
|
import { HttpRequest } from '../../server/HttpRequest';
|
|
import { ResourceIdentifier } from '../representation/ResourceIdentifier';
|
|
|
|
export abstract class TargetExtractor extends AsyncHandler<HttpRequest, ResourceIdentifier> {}
|