1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-11-26 22:41:17 +02:00

Chore: Migrate file system sync to TypeScript (#10361)

This commit is contained in:
Henry Heino
2024-04-25 05:31:48 -07:00
committed by GitHub
parent c7c4371902
commit 83b50aaa8e
15 changed files with 124 additions and 84 deletions

View File

@@ -84,6 +84,10 @@ export default class FsDriverBase {
throw new Error('Not implemented: remove');
}
public async setTimestamp(_path: string, _timestampDate: Date): Promise<void> {
throw new Error('Not implemented: setTimestamp');
}
public async isDirectory(path: string) {
const stat = await this.stat(path);
return !stat ? false : stat.isDirectory();