| 57 | } |
| 58 | |
| 59 | export interface IEditor extends IPublicModelEditor { |
| 60 | config?: EditorConfig; |
| 61 | |
| 62 | components?: PluginClassSet; |
| 63 | |
| 64 | eventBus: IEventBus; |
| 65 | |
| 66 | init(config?: EditorConfig, components?: PluginClassSet): Promise<any>; |
| 67 | } |
| 68 | |
| 69 | // eslint-disable-next-line no-redeclare |
| 70 | export class Editor extends EventEmitter implements IEditor { |
no outgoing calls
no test coverage detected
searching dependent graphs…