UNPKG

ztobp.js

Version:

A bot framework for custom bots in chat rooms.

15 lines (12 loc) 260 B
// src/Channel.ts export class Channel { private id: string; private name: string; constructor(id: string, name: string) { this.id = id; this.name = name; } getInfo() { return `Channel Info: ID - ${this.id}, Name - ${this.name}`; } }