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
15 lines (14 loc) • 783 B
TypeScript
import { ActionRecipe } from '../../recipe';
import { EditorType } from '../core/EditorType';
import { BaseInteropProcessor } from './BaseInteropProcessor';
import { InteropProcessor } from './InteropProcessor';
declare class DevExpressRichEditProcessor extends BaseInteropProcessor implements InteropProcessor {
private searchWordList;
constructor(loggingEnabled: boolean);
get editorType(): EditorType;
processFinalResult(recipe: Partial<ActionRecipe>, editor?: Element | any): void;
processCommand(command: Partial<ActionRecipe>, editor?: Element | any): void;
GetLastCharacter(RichEdit: any): any[];
ApplyPostBeautification(recipe: Partial<ActionRecipe>, lineEnd: boolean, RichEdit: any): void;
}
export { DevExpressRichEditProcessor };