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