mirror of
https://github.com/CommunitySolidServer/CommunitySolidServer.git
synced 2024-10-03 14:55:10 +00:00
9 lines
353 B
TypeScript
9 lines
353 B
TypeScript
import { AsyncHandler } from '../../util/handlers/AsyncHandler';
|
|
import type { Operation } from '../operations/Operation';
|
|
import type { PermissionSet } from './PermissionSet';
|
|
|
|
/**
|
|
* Verifies which permissions are requested on a given {@link Operation}.
|
|
*/
|
|
export abstract class PermissionsExtractor extends AsyncHandler<Operation, PermissionSet> {}
|