cloudservices/src/class/Event.ts

16 lines
310 B
TypeScript
Raw Normal View History

2020-06-29 17:13:54 -04:00
import { Client } from '.';
export default class Event {
public client: Client
public event: string;
constructor(client: Client) {
this.client = client;
this.event = '';
this.run = this.run.bind(this);
}
public async run(...args: any[]): Promise<void> { return Promise.resolve(); }
}