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) • 604 B
TypeScript
import { ActionRecipe } from '../../recipe/ActionRecipe';
import { EditorType } from '../core/EditorType';
import { CommonContentEditableProcessor } from './CommonContentEditableProcessor';
declare class GenericInteropProcessor extends CommonContentEditableProcessor {
insertTextAtCursorHandler?: (editorInstance: Element, newProcessText: string) => void;
validateDependencies(): void;
get editorType(): EditorType;
customSelectProcessor(actionRecipe: Partial<ActionRecipe>): boolean;
customCommandProcessor(_action: string): boolean;
}
export { GenericInteropProcessor };