import { EditorType } from '../core/EditorType'; import { ActionRecipe } from '../../recipe/ActionRecipe'; interface InteropProcessor { /** The Type of the current Processor */ editorType: EditorType; /** Adds string content to the focused editor */ processFinalResult(recipe: Partial, editor?: Element | any): void; /** Process the voice command in the current focused editor */ processCommand(command: Partial, editor?: Element | any): void; } export { InteropProcessor };