| 313 | } |
| 314 | |
| 315 | interface ConvertToDeepnoteOptions { |
| 316 | absolutePath: string |
| 317 | resolveProjectName: (name?: string) => string |
| 318 | resolveOutputPath: (filename: string) => Promise<string> |
| 319 | singleFile: boolean |
| 320 | } |
| 321 | |
| 322 | function convertJupyterToDeepnote(options: ConvertToDeepnoteOptions): Promise<string> { |
| 323 | return convertSingleFileToDeepnote({ |
nothing calls this directly
no outgoing calls
no test coverage detected