import { IBaseActionSchema } from './action-schemas'; import { TriggerTypes } from './triggers'; export interface IReaction { id: string; source: string[]; } export interface ITrigger { type: TriggerTypes; config?: { triggerId?: string; seconds?: number; }; } export interface IAction { id: string; source: string[] | IBaseActionSchema[]; }