Extension point to access the editing widget or its configuration.

interface EditorInterceptor {
    interceptConfig: (
        editor: EditorProperties,
    ) => undefined | EditorProperties;
    interceptEditor: (editor: Editor) => any;
}

Properties

interceptConfig: (editor: EditorProperties) => undefined | EditorProperties

Change editor widgets configuration. If undefined is returned, the original configuration is used.

interceptEditor: (editor: Editor) => any

Change editor widget or add listeners to it. If undefined is returned, the original widget is used.