diff --git a/src/createRoom.ts b/src/createRoom.ts index ec84ed8316..060db3b080 100644 --- a/src/createRoom.ts +++ b/src/createRoom.ts @@ -45,7 +45,6 @@ enum Preset { } interface Invite3PID { - id_server: string; id_access_token?: string; // this gets injected by the js-sdk medium: string; diff --git a/src/editor/dom.ts b/src/editor/dom.ts index 6a43ffaac5..1ca41553f4 100644 --- a/src/editor/dom.ts +++ b/src/editor/dom.ts @@ -17,7 +17,6 @@ limitations under the License. import {CARET_NODE_CHAR, isCaretNode} from "./render"; import DocumentOffset from "./offset"; -import EditorModel from "./model"; type Predicate = (node: Node) => boolean; type Callback = (node: Node) => void; diff --git a/src/editor/model.ts b/src/editor/model.ts index 7cc1985346..2e70b872e9 100644 --- a/src/editor/model.ts +++ b/src/editor/model.ts @@ -30,7 +30,7 @@ import {Caret} from "./caret"; * @param {object?} diff an object with `removed` and `added` strings */ - /** +/** * @callback TransformCallback * @param {DocumentPosition?} caretPosition the position where the caret should be position * @param {string?} inputType the inputType of the DOM input event diff --git a/src/editor/parts.ts b/src/editor/parts.ts index 18fedffe4b..ed48fcbe4e 100644 --- a/src/editor/parts.ts +++ b/src/editor/parts.ts @@ -22,7 +22,7 @@ import {Room} from "matrix-js-sdk/src/models/room"; import AutocompleteWrapperModel, { GetAutocompleterComponent, UpdateCallback, - UpdateQuery + UpdateQuery, } from "./autocomplete"; import * as Avatar from "../Avatar";