augnitosdk
Version:
AugnitoSDK lets you make use of the Speech Recognition AI. You can edit, format and complete reports at the speed of human speech, with the best-in-class accuracy
12 lines (11 loc) • 538 B
TypeScript
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<ActionRecipe>, editor?: Element | any): void;
/** Process the voice command in the current focused editor */
processCommand(command: Partial<ActionRecipe>, editor?: Element | any): void;
}
export { InteropProcessor };