Files
AFFiNE-Mirror/apps/electron/layers/main-events.ts
2023-04-24 12:53:21 -05:00

6 lines
216 B
TypeScript

// This file contains the main process events
// It will guide preload and main process on the correct event types and payloads
export interface MainEventMap {
'main:on-db-update': (workspaceId: string) => void;
}