IAddSectionOptions | @jupyterlab (original) (raw)

Interface IAddSectionOptions

The options used to add a section to the notebook tools.

interface IAddSectionOptions {
label?: string;
rank?: number;
sectionName: string;
tool?: ITool;
}

Index

Properties

label? rank? sectionName tool?

Properties

Optionallabel

label?: string

The label of the new section.

Optionalrank

rank?: number

The rank order of the section among its siblings.

sectionName

sectionName: string

The name of the new section.

Optionaltool

tool?: ITool

The tool to add to the notebook tools area.