MCPcopy Create free account
hub / github.com/deepnote/deepnote / ConvertOptions

Interface ConvertOptions

packages/convert/src/cli.ts:24–33  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

22import { writeDeepnoteFile } from './write-deepnote-file'
23
24interface ConvertOptions {
25 cwd?: string
26 inputPath: string
27 outputPath?: string
28 projectName?: string
29 /** Output format when converting from .deepnote (default: 'jupyter') */
30 outputFormat?: 'jupyter' | 'percent' | 'quarto' | 'marimo'
31 /** When true, outputs are included in the main file (disables snapshot mode) */
32 singleFile?: boolean
33}
34
35export async function convert(options: ConvertOptions): Promise<string> {
36 const {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected