1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-07-16 00:14:34 +02:00

Desktop, mobile: Add support for Joplin Cloud email to note functionality (#8460)

This commit is contained in:
pedr
2023-07-18 16:15:45 -03:00
committed by GitHub
parent 85079ad213
commit 06b2ba9d75
16 changed files with 157 additions and 19 deletions

View File

@ -132,6 +132,10 @@ export class EventManager {
}
}
public once(eventName: string, callback: any) {
return this.emitter_.once(eventName, callback);
}
}
const eventManager = new EventManager();