The configuration options for a console widget.

interface IConfig {
    clearCellsOnExecute?: boolean;
    clearCodeContentOnExecute?: boolean;
    hideCodeInput?: boolean;
    promptCellPosition?: PromptCellPosition;
    showBanner?: boolean;
}

Properties

clearCellsOnExecute?: boolean

Whether to clear the previous cells on execute.

clearCodeContentOnExecute?: boolean

Whether to clear the code content of the prompt cell on execute.

hideCodeInput?: boolean

Whether to hide the code input after a cell is executed.

promptCellPosition?: PromptCellPosition

Where the prompt cell should be located.

showBanner?: boolean

Whether to show the kernel banner.