UNPKG

tr11p-commons

Version:
12 lines (11 loc) 274 B
import { Topics } from './topics'; import { Event } from './events'; export interface EmailEvent extends Event { topic: Topics.SendEMail; data: { template_id: string; recipient: string; variables_json?: any; sender?: string; }; }