2023-12-25 08:38:42 +00:00
|
|
|
import { ISendMessageRequest } from "@spt-aki/models/eft/dialog/ISendMessageRequest";
|
|
|
|
import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile";
|
2023-12-24 19:54:27 +00:00
|
|
|
|
|
|
|
export interface ICommandoCommand
|
|
|
|
{
|
|
|
|
getCommandPrefix(): string;
|
|
|
|
getCommandHelp(command: string): string;
|
|
|
|
getCommands(): Set<string>;
|
2023-12-25 08:38:42 +00:00
|
|
|
handle(command: string, commandHandler: IUserDialogInfo, sessionId: string, request: ISendMessageRequest): string;
|
2023-12-24 19:54:27 +00:00
|
|
|
}
|