/** * @hidden * @packageDocumentation */ /** * A handler is an abstract concept for execution. It knows what it can handle, * and will perform the action if needed. * @hidden */ export default interface IHandleable
, R> {
canHandle(...params: P): Promise