Files
AFFiNE-Mirror/apps/electron/layers/main-events.ts
2023-05-08 13:21:15 -05:00

7 lines
277 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;
'main:client-update-available': (version: string) => void;
}