jupystar
Version:
Converter from Jupyter notebook (ipynb) to Starboard notebook
14 lines (13 loc) • 745 B
TypeScript
import { JupystarOptions } from "./options";
export { convertJupyterToStarboard } from "./convert";
export { notebookContentToText } from "starboard-notebook/dist/src/content/serialization";
export { parseJupyterNotebook } from "./parseJupyter";
export { JUPYSTAR_VERSION } from "./version";
/**
* End to end conversion from Jupyter notebook file (ipynb) to Starboard notebook format.
*/
export declare function convertJupyterStringToStarboardString(content: string, opts?: Partial<JupystarOptions>): string;
/**
* End to end conversion from Starboard notebook format to Jupyter notebook format (ipynb).
*/
export declare function convertStarboardStringToJupyterString(content: string, opts?: Partial<JupystarOptions>): string;