mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
9 lines
429 B
TypeScript
9 lines
429 B
TypeScript
import type { HttpRequest } from '../../server/HttpRequest';
|
|
import { AsyncHandler } from '../../util/AsyncHandler';
|
|
import type { RepresentationPreferences } from '../representation/RepresentationPreferences';
|
|
|
|
/**
|
|
* Creates {@link RepresentationPreferences} based on the incoming HTTP headers in a {@link HttpRequest}.
|
|
*/
|
|
export abstract class PreferenceParser extends AsyncHandler<HttpRequest, RepresentationPreferences> {}
|