( rootPath: string, path: string )
| 2718 | } |
| 2719 | |
| 2720 | export async function readFilePreview( |
| 2721 | rootPath: string, |
| 2722 | path: string |
| 2723 | ): Promise<FilePreviewContent> { |
| 2724 | return getTransport().call("read_file_preview", { rootPath, path }) |
| 2725 | } |
| 2726 | |
| 2727 | export async function readFileForEdit( |
| 2728 | rootPath: string, |
no test coverage detected