SettingsRef: {
    register: (callback: (settings: Settings) => void) => void;
    update: (updater: (settings: Settings) => void) => void;
}

Settings API managing settings applied to the component.

Type declaration

  • register: (callback: (settings: Settings) => void) => void

    Registers a callback function to be notified when settings are updated.

  • update: (updater: (settings: Settings) => void) => void

    Allows updating settings by providing a callback function.