enhance(libs): add get_file_content function for retrieving file content

This commit is contained in:
charlie
2026-01-06 12:42:29 +08:00
parent 74bfe36d8f
commit 23c6f81010
3 changed files with 7 additions and 0 deletions

View File

@@ -924,6 +924,7 @@ export interface IDBProxy {
* @param content
*/
setFileContent: (path: string, content: string) => Promise<void>
getFileContent: (path: string) => Promise<string | null>
}
/**