CommunitySolidServer/src/ldp/operations/OperationHandler.ts
Joachim Van Herwegen a4f2b3995c feat: add additional supported interfaces
This includes the relevant auth headers and a simplification of several others.
2020-05-25 11:27:23 +02:00

8 lines
204 B
TypeScript

import { AsyncHandler } from '../../util/AsyncHandler';
import { Operation } from './Operation';
/**
* Handler for a specific operation type.
*/
export type OperationHandler = AsyncHandler<Operation>;