The options used to create an InputArea.

interface IOptions {
    contentFactory: InputArea.IContentFactory;
    editorOptions?: Omit<CodeEditor.IOptions, "host" | "model">;
    model: ICellModel;
}

Properties

contentFactory: InputArea.IContentFactory

The content factory used by the widget to create children.

editorOptions?: Omit<CodeEditor.IOptions, "host" | "model">

Editor options

model: ICellModel

The model used by the widget.