UNPKG

tr11p-commons

Version:
12 lines (11 loc) 285 B
import { Topics } from './topics'; import { Event } from './events'; export interface BulkEmailEvent extends Event { topic: Topics.SendBulkEmail; data: { template_id: string; recipients: string[]; variables_json?: any; sender?: string; }; }