(format: string)
| 25 | } |
| 26 | |
| 27 | export function isSourceNotebookFormat(format: string): format is SourceNotebookFormat { |
| 28 | return (SOURCE_NOTEBOOK_FORMATS as readonly string[]).includes(format) |
| 29 | } |
| 30 | |
| 31 | export interface RunToDeepnoteConversionOptions { |
| 32 | projectName: string |
no outgoing calls
no test coverage detected