debt - proper strict null typing in subclasses of editor

This commit is contained in:
Benjamin Pasero
2019-09-02 10:56:27 +02:00
parent 58319746d6
commit a4be32a8c2
19 changed files with 84 additions and 75 deletions

View File

@@ -53,12 +53,12 @@ export interface IEditor {
/**
* The assigned input of this editor.
*/
input: IEditorInput | null;
input: IEditorInput | undefined;
/**
* The assigned options of this editor.
*/
options: IEditorOptions | null;
options: IEditorOptions | undefined;
/**
* The assigned group this editor is showing in.