import { ActionConfig } from '../models/action-config.model';
import { Observable } from 'rxjs';
export interface ActionHandler {
    canHandle(type: ActionConfig['actionType']): boolean;
    handle(config: ActionConfig): Observable<void> | void;
}
