UNPKG

ngx-json-ui

Version:

This project was generated using [Angular CLI](https://github.com/angular/angular-cli) version 19.2.0.

7 lines (6 loc) 249 B
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; }