Type alias JupyterProps

JupyterProps: {
    children: React.ReactNode;
    collaborative?: boolean;
    defaultKernelName: string;
    injectableStore?: Store | any;
    jupyterServerHttpUrl?: string;
    jupyterServerWsUrl?: string;
    jupyterToken?: string;
    lite: boolean;
    startDefaultKernel: boolean;
    terminals?: boolean;
    theme?: any;
}

Definition of the properties that can be passed when creating a Jupyter context.

Type declaration

  • children: React.ReactNode
  • Optional collaborative?: boolean
  • defaultKernelName: string
  • Optional injectableStore?: Store | any
  • Optional jupyterServerHttpUrl?: string
  • Optional jupyterServerWsUrl?: string
  • Optional jupyterToken?: string
  • lite: boolean
  • startDefaultKernel: boolean
  • Optional terminals?: boolean
  • Optional theme?: any

Generated using TypeDoc