whatsapp-api-js
Version:
A TypeScript server agnostic Whatsapp's Official API framework
22 lines • 556 B
TypeScript
/**
* @module setup
*
* @description
* Simplify the setup proccess of the WhatsAppAPI for different runtimes.
*
* @example
* ```ts
* import WhatsAppAPI from "whatsapp-api-js";
* import { NodeNext } from "whatsapp-api-js/setup/node";
*
* const Whatsapp = new WhatsAppAPI(NodeNext({
* token: "YOUR_TOKEN",
* appSecret: "YOUR_APP_SECRET"
* }));
* ```
*/
export { default as Bun } from "./bun";
export { default as Deno } from "./deno";
export { default as Web } from "./web";
export * from "./node";
//# sourceMappingURL=index.d.ts.map