UNPKG

teams-webhook-notifier

Version:

Notificador simples via Microsoft Teams Webhook com suporte a observabilidade.

12 lines (9 loc) 346 B
interface IMicrosoftService { sendMessage(title: string, text: string): Promise<void>; } declare class MicrosoftService implements IMicrosoftService { private webhookUrl; constructor(webhookUrl: string); sendMessage(title: string | undefined, text: string): Promise<void>; } export { type IMicrosoftService, MicrosoftService };