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

10 lines (9 loc) 716 B
import { CKEditor4InteropProcessor } from '../processors/CKEditor4InteropProcessor'; import { CKEditor5InteropProcessor } from '../processors/CKEditor5InteropProcessor'; import { DevExpressRichEditProcessor } from '../processors/DevExpressRichEditProcessor'; import { GenericInteropProcessor } from '../processors/GenericInteropProcessor'; import { HTMLInteropProcessor } from '../processors/HTMLInteropProcessor'; import { EditorType } from './EditorType'; export declare class ProcessorFactory { static createProcessor(editorType: EditorType, enableLogs: boolean): HTMLInteropProcessor | CKEditor4InteropProcessor | CKEditor5InteropProcessor | DevExpressRichEditProcessor | GenericInteropProcessor; }