UNPKG

nestjs-slack-webhook

Version:
11 lines (9 loc) 262 B
import { IncomingWebhook } from "@slack/webhook"; import { SlackOptions } from "./slackOptions"; export function getSlackClient({ url, ...args }: SlackOptions): IncomingWebhook { const slackClient = new IncomingWebhook(url, args); return slackClient; }