mirror of
https://github.com/ente-io/ente.git
synced 2025-08-14 02:07:33 +00:00
13 lines
301 B
TypeScript
13 lines
301 B
TypeScript
import { EventEmitter } from "eventemitter3";
|
|
|
|
// TODO: Remove me
|
|
|
|
// When registering event handlers,
|
|
// handle errors to avoid unhandled rejection or propagation to emit call
|
|
|
|
export enum Events {
|
|
LOCAL_FILES_UPDATED = "localFilesUpdated",
|
|
}
|
|
|
|
export const eventBus = new EventEmitter<Events>();
|