UNPKG

transformice.js

Version:

Node.js client for Transformice with full Typescript support.

15 lines (14 loc) 352 B
import Client from "../client"; import Base from "./Base"; /** Represents a chat channel. */ export default class Channel extends Base { /** * The channel name */ name: string; constructor(client: Client, name: string); /** * Send a message to this channel */ sendMessage(message: string): void; }