UNPKG

jupystar

Version:

Converter from Jupyter notebook (ipynb) to Starboard notebook

10 lines (9 loc) 300 B
import { Cell } from "starboard-notebook/dist/src/types"; /** * Takes a given Starboard cell and changes its type to * "raw", "markdown" or "code" * This modifies the input cell. * * @param cell */ export declare function convertStarboardCellTypeIntoJupyterCellType(cell: Cell): void;