Sign up (with export icon)

ContextWatchdogItemConfiguration

Api-interface icon interface

The watchdog item configuration interface.

Properties

  • Chevron-right icon

    An editor configuration.

  • Chevron-right icon

    A function that initializes the item (the editor). The function takes editor initialization arguments and should return a promise. For example: ( el, config ) => ClassicEditor.create( el, config ).

  • Chevron-right icon

    destructor : ( editor: Editor ) => Promise<unknown> | undefined

    A function that destroys the item instance (the editor). The function takes an item and should return a promise. For example: editor => editor.destroy()

  • Chevron-right icon

    id : string

    id A unique item identificator.

  • Chevron-right icon

    sourceElementOrData : string | HTMLElement

    The source element or data that will be passed as the first argument to the Editor.create() method.

  • Chevron-right icon

    type : 'editor'

    The type of the item to create. At the moment, only 'editor' is supported.