UNPKG

starboard-notebook

Version:

Starboard Notebook

16 lines (15 loc) 506 B
import { NotebookContent } from "../types"; export declare const CellDelimiterRegex: RegExp; export interface ParsedCell { type: string; metadata: any; lines: string[]; } export declare function textToNotebookContent(text: string): NotebookContent; /** * Parses the given notebook file content string into the frontmatter and ParsedCell structure. */ export declare function parseNotebookContent(notebookContentString: string): { cells: ParsedCell[]; metadata: any; };