An initialize options for ContentFactory.

interface IOptions {
    editorFactory: Factory;
    createCellFooter(): ICellFooter;
    createCellHeader(): ICellHeader;
    createInputPrompt(): IInputPrompt;
    createOutputPrompt(): IOutputPrompt;
    createStdin(options): IStdin;
}

Hierarchy (view full)

Properties

editorFactory: Factory

The editor factory we need to include in CodeEditorWrapper.IOptions.

This is a separate readonly attribute rather than a factory method as we need to pass it around.

Methods