(editor: Editor)
| 118 | }; |
| 119 | |
| 120 | const initModel = (editor: Editor) => { |
| 121 | const model = Options.getModel(editor); |
| 122 | const Model = ModelManager.get(model) as AddOnConstructor<Model>; |
| 123 | editor.model = Model(editor, ModelManager.urls[model]); |
| 124 | }; |
| 125 | |
| 126 | const initLicenseKeyManager = (editor: Editor) => { |
| 127 | LicenseKeyManagerLoader.init(editor); |