Binato/server/interfaces/ICommand.ts
2023-09-10 12:59:22 +01:00

10 lines
No EOL
281 B
TypeScript

import Channel from "../objects/Channel";
import Shared from "../objects/Shared";
import User from "../objects/User";
export default interface ICommand {
shared:Shared,
helpText:string,
helpDescription:string,
exec: (channel:Channel, sender:User, args:Array<string>) => void
}