whatsapp-cloud-api
Version:
Node.js library for creating bots and sending/receiving messages using the Whatsapp Cloud API
15 lines (14 loc) • 368 B
TypeScript
export declare enum PubSubEvents {
message = "message",
text = "text",
image = "image",
document = "document",
audio = "audio",
video = "video",
sticker = "sticker",
location = "location",
contacts = "contacts",
button_reply = "button_reply",
list_reply = "list_reply"
}
export type PubSubEvent = keyof typeof PubSubEvents;