Editor API Reference - v1.1.4
    Preparing search index...

    Class SettingsSchema

    Provides methods to access the settings schema

    Index

    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();
      
    • Get the default settings for the user

      Returns Record<string, any>

      The default settings for the user

      const userSettings = editor.schema.settings.getDefaultUserSettings();