map.apps Bundle APIs 4.20.2
    Preparing search index...

    Interface EditorInterceptor

    Extension point to access the editing widget or its configuration.

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

    Properties

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

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

    interceptEditor: (editor: Editor) => Editor | undefined

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