The options used to create a output area model.

interface IOptions {
    contentFactory?: IOutputAreaModel.IContentFactory;
    trusted?: boolean;
    values?: IOutput[];
}

Hierarchy

  • IOptions

    Properties

    The output content factory used by the model.

    If not given, a default factory will be used.

    trusted?: boolean

    Whether the output is trusted. The default is false.

    values?: IOutput[]

    The initial values for the model.