UNPKG

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

11 lines (10 loc) 591 B
import { AnchoredEditorData } from '../types/AnchoredEditorData'; import { TargetEditor } from './TargetEditor'; declare abstract class CommonEditorUtils { static anchoredEditor: AnchoredEditorData | undefined; static setAnchoredElement(activeEditor: Element | undefined, editorName: string | null): void; static moveToPreviousField(activeEditor: Element, listOfControls: TargetEditor[]): void; static moveToNextField(activeEditor: Element, listOfControls: TargetEditor[]): void; static getActiveEditorElement(): Element | null; } export { CommonEditorUtils };