( input: MarimoAppInput, options: ConvertMarimoAppToDeepnoteOptions )
| 397 | * @returns A DeepnoteFile object |
| 398 | */ |
| 399 | export function convertMarimoAppToDeepnote( |
| 400 | input: MarimoAppInput, |
| 401 | options: ConvertMarimoAppToDeepnoteOptions |
| 402 | ): DeepnoteFile { |
| 403 | // Convert to MarimoAppWithOutputs with undefined outputs for compatibility |
| 404 | return convertMarimoAppToDeepnoteFile({ ...input, outputs: undefined }, options) |
| 405 | } |
| 406 | |
| 407 | /** |
| 408 | * Converts a single Marimo app object with outputs into a single-notebook Deepnote project file. |
no test coverage detected