UNPKG

@bastion/tesseract

Version:

The heart and soul of the Bastion bot.

9 lines (8 loc) 300 B
import { EventEmitter } from "node:events"; import { Message } from "discord.js"; declare abstract class TesseractFilter extends EventEmitter { readonly name: string; constructor(name: string); abstract exec(message: Message<boolean>): Promise<boolean>; } export default TesseractFilter;