UNPKG

793 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3const botworker_1 = require("./botworker");
4const botbuilder_1 = require("botbuilder");
5/**
6 * A base class for a `bot` instance, an object that contains the information and functionality for taking action in response to an incoming message.
7 * Note that adapters are likely to extend this class with additional platform-specific methods - refer to the adapter documentation for these extensions.
8 */
9class TeamsBotWorker extends botworker_1.BotWorker {
10 constructor(controller, config) {
11 super(controller, config);
12 this.teams = botbuilder_1.TeamsInfo;
13 console.log('CONSTRUCTING A TEAMS WORKER!');
14 }
15}
16exports.TeamsBotWorker = TeamsBotWorker;
17//# sourceMappingURL=botworkerTeams.js.map
\No newline at end of file