You've already forked Nitro_Render_V3
mirror of
https://github.com/duckietm/Nitro_Render_V3.git
synced 2026-06-20 07:26:18 +00:00
🆙 added missing AvailableCommands
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
import { IMessageEvent } from '@nitrots/api';
|
||||
import { MessageEvent } from '@nitrots/events';
|
||||
import { AvailableCommandsParser } from '../../parser';
|
||||
|
||||
export class AvailableCommandsEvent extends MessageEvent implements IMessageEvent
|
||||
{
|
||||
constructor(callBack: Function)
|
||||
{
|
||||
super(callBack, AvailableCommandsParser);
|
||||
}
|
||||
|
||||
public getParser(): AvailableCommandsParser
|
||||
{
|
||||
return this.parser as AvailableCommandsParser;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user