UNPKG

tr11p-commons

Version:
10 lines (9 loc) 213 B
import { Topics } from './topics'; import { Event } from './events'; export interface SmsEvent extends Event { topic: Topics.SendSMS; data: { phoneNumber: string; message: string; }; }