Interface EditorInterceptor

Extension point to access the editing widget or its configuration.

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

Properties

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

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

Type declaration

interceptEditor: ((editor) => any)

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

Type declaration

    • (editor): any
    • Parameters

      • editor: Editor

      Returns any

Generated using TypeDoc