mirror of
https://github.com/sp-tarkov/server.git
synced 2025-02-13 09:50:43 -05:00
9 lines
311 B
TypeScript
9 lines
311 B
TypeScript
|
import { ISendMessageRequest } from "@spt-aki/models/eft/dialog/ISendMessageRequest";
|
||
|
import { IUserDialogInfo } from "@spt-aki/models/eft/profile/IAkiProfile";
|
||
|
|
||
|
export interface IDialogueChatBot
|
||
|
{
|
||
|
getChatBot(): IUserDialogInfo;
|
||
|
handleMessage(sessionId: string, request: ISendMessageRequest): string;
|
||
|
}
|