(filePath: string)
| 5 | import { PYTHON_BUILTINS } from '@deepnote/reactivity' |
| 6 | |
| 7 | export async function loadDeepnoteFile(filePath: string): Promise<DeepnoteFile> { |
| 8 | const absolutePath = path.resolve(filePath) |
| 9 | const content = await fs.readFile(absolutePath, 'utf-8') |
| 10 | return deserializeDeepnoteFile(content) |
| 11 | } |
| 12 | |
| 13 | export async function saveDeepnoteFile(filePath: string, file: DeepnoteFile): Promise<void> { |
| 14 | const absolutePath = path.resolve(filePath) |
no test coverage detected