You've already forked joplin
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user