import type { EventsEnum } from './EventsEnum'; /** * A single watcher entry in the create payload: who watches and which events. */ export type WatcherEntry = { watcher_id: number; events?: Array; };