UNPKG

271 BTypeScriptView Raw
1interface IPostToSlackOptions {
2 tag: string;
3 owner: string;
4 repo: string;
5 slackUrl: string;
6 baseUrl: string;
7}
8export default function postToSlack(releaseNotes: string, options: IPostToSlackOptions): Promise<import("node-fetch").Response>;
9export {};