import * as wmill from "https://deno.land/x/[email protected]/index.ts";
import { WebClient } from "https://deno.land/x/[email protected]/mod.ts";
/*
@param: {string} channel - Channel containing the message to be deleted.
@param: {string} timestamp - Timestamp of the message to be deleted.
*/

export async function main(
  slack_auth: wmill.Resource<"slack">,
  channel: string,
  timestamp: string,
) {
  const web = new WebClient(slack_auth);

  let response = await web.chat.delete({
    channel: channel,
    timestamp: timestamp,
  });

  return { "response": response };
}