bot/src/events/Event.ts

9 lines
239 B
TypeScript
Raw Normal View History

2020-01-13 22:38:12 +00:00
import { PluginClient } from '../PluginClient';
// tslint:disable-next-line: no-any
type EventFunc = (lifeguard: PluginClient, ...args: any[]) => void;
export class Event {
constructor(public name: string, public func: EventFunc) {}
}