UNPKG

ztobp.js

Version:

A bot framework for custom bots in chat rooms.

15 lines (14 loc) 339 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Channel = void 0; // src/Channel.ts class Channel { constructor(id, name) { this.id = id; this.name = name; } getInfo() { return `Channel Info: ID - ${this.id}, Name - ${this.name}`; } } exports.Channel = Channel;