13 lines
296 B
TypeScript
13 lines
296 B
TypeScript
export interface GetUserChatsQuery {
|
|
userId: string;
|
|
includeArchived?: boolean;
|
|
}
|
|
export interface GetChatHistoryQuery {
|
|
chatId: string;
|
|
userId: string;
|
|
}
|
|
export interface GetArchivedChatsQuery {
|
|
userId: string;
|
|
gameId?: string;
|
|
}
|
|
//# sourceMappingURL=ChatQueries.d.ts.map
|