ISessionOptions: Pick<Session.IModel, "path" | "type" | "name"> & {
    kernel?: Partial<Pick<Kernel.IModel, "name">>;
}

A session request.

Notes

The path and type session model parameters are required. The name parameter is not technically required, but is often assumed to be nonempty, so we require it too.

See the Jupyter Server API.

Type declaration