🐛 tab support

This commit is contained in:
2026-02-28 10:40:26 +10:00
parent 02c5a09538
commit 62cd20c723
9 changed files with 81 additions and 14 deletions

View File

@@ -22,6 +22,7 @@ declare global {
deleteNode: (targetPath: string) => Promise<void>
createFile: (parentPath: string, name: string) => Promise<string>
createDir: (parentPath: string, name: string) => Promise<string>
moveFile: (sourcePath: string, targetDirPath: string) => Promise<string>
}
}
}