UNPKG

nestwhats

Version:

A whatsapp-web.js wrapper for NestJS to create WhatsApp bots

11 lines (10 loc) 452 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ClientProvider = void 0; const whatsapp_web_js_1 = require("whatsapp-web.js"); const nestwhats_module_definition_1 = require("../nestwhats.module-definition"); exports.ClientProvider = { provide: whatsapp_web_js_1.Client, useFactory: (options) => new whatsapp_web_js_1.Client(options), inject: [nestwhats_module_definition_1.NESTWHATS_MODULE_OPTIONS], };