Type alias INotebookProps

INotebookProps: {
    CellSidebar?: ((props) => JSX.Element);
    Toolbar?: ((props) => JSX.Element);
    bundledIPyWidgets?: BundledIPyWidgets[];
    cellMetadataPanel: boolean;
    cellSidebarMargin: number;
    externalIPyWidgets?: ExternalIPyWidgets[];
    height?: string;
    ipywidgets: "classic" | "lab";
    kernel?: Kernel;
    maxHeight?: string;
    nbformat?: INotebookContent;
    nbgrader: boolean;
    path?: string;
    readOnly: boolean;
    renderers: IRenderMime.IRendererFactory[];
    uid: string;
}

Type declaration

  • Optional CellSidebar?: ((props) => JSX.Element)
  • Optional Toolbar?: ((props) => JSX.Element)
      • (props): JSX.Element
      • Parameters

        • props: any

        Returns JSX.Element

  • Optional bundledIPyWidgets?: BundledIPyWidgets[]
  • cellMetadataPanel: boolean
  • cellSidebarMargin: number
  • Optional externalIPyWidgets?: ExternalIPyWidgets[]
  • Optional height?: string
  • ipywidgets: "classic" | "lab"
  • Optional kernel?: Kernel
  • Optional maxHeight?: string
  • Optional nbformat?: INotebookContent
  • nbgrader: boolean
  • Optional path?: string
  • readOnly: boolean
  • renderers: IRenderMime.IRendererFactory[]
  • uid: string

Generated using TypeDoc