( rootPath: string, path: string )
| 2770 | } |
| 2771 | |
| 2772 | export async function deleteFileTreeEntry( |
| 2773 | rootPath: string, |
| 2774 | path: string |
| 2775 | ): Promise<void> { |
| 2776 | return getTransport().call("delete_file_tree_entry", { rootPath, path }) |
| 2777 | } |
| 2778 | |
| 2779 | export async function createFileTreeEntry( |
| 2780 | rootPath: string, |
no test coverage detected