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
18 lines (17 loc) • 793 B
TypeScript
import { ActionRecipe } from '../../recipe/ActionRecipe';
import { EditorType } from '../core/EditorType';
import { CommonContentEditableProcessor } from './CommonContentEditableProcessor';
declare class CKEditor5InteropProcessor extends CommonContentEditableProcessor {
validateDependencies(): void;
get editorType(): EditorType;
customLineBreakFunction(): void;
customTextWriteFunction(insertText: string): void;
customSelectProcessor(actionRecipe: Partial<ActionRecipe>): boolean;
customCommandProcessor(action: string): boolean;
customActionProcessor(selectFor: string): boolean;
private getEditor;
private getActiveEditorElement;
private findInstance;
private CKEditorPanelButtonEnable;
}
export { CKEditor5InteropProcessor };