const editor = {
config,
markdown: new Markdown(),
- settings: new Settings(config.settings),
+ settings: new Settings(config.settingInputs),
};
editor.actions = new Actions(editor);
* @property {Element} displayEl
* @property {HTMLTextAreaElement} inputEl
* @property {String} drawioUrl
+ * @property {HTMLInputElement[]} settingInputs
* @property {Object<String, String>} text
- * @property {Object<String, any>} settings
*/
/**