Source: xxe/editor/ConnectedEvent.js

/**
 * Event sent after the XMLEditor is connected to its server.
 *
 * @see XMLEditor#connect
 */
export class ConnectedEvent extends XMLEditorEvent {
    constructor(xmlEditor, data) {
        super(xmlEditor, data, "connected");
    }
}