Files

4 lines
139 B
TypeScript

/** Port: external messaging channel (WhatsApp, SMS, etc.). */
export interface MessagingGateway {
openWhatsApp(message: string): void;
}