Provides methods to access the settings schema

Internal

Other

  • Get the default settings for the project

    Returns Record<string, any>

    The default settings for the project

    const projectSettings = editor.schema.settings.getDefaultProjectSettings();
    
  • Get the default settings for the user in the project

    Returns Record<string, any>

    The default settings for the user in the project

    const projectUserSettings = editor.schema.settings.getDefaultProjectUserSettings();