UNPKG

@solid/community-server

Version:

Community Solid Server: an open and modular implementation of the Solid specifications

9 lines (8 loc) 352 B
import { AsyncHandler } from 'asynchronous-handlers'; import type { Operation } from '../../http/Operation'; import type { AccessMap } from './Permissions'; /** * Extracts all {@link AccessMode}s that are necessary to execute the given {@link Operation}. */ export declare abstract class ModesExtractor extends AsyncHandler<Operation, AccessMap> { }