mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-12 20:38:52 +00:00
6 lines
216 B
TypeScript
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;
|
|
}
|