mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 21:13:50 +00:00
10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
export type UpdateChatFeedbackProps = {
|
|
appId: string;
|
|
chatId: string;
|
|
chatItemId: string;
|
|
shareId?: string;
|
|
outLinkUid?: string;
|
|
userBadFeedback?: string;
|
|
userGoodFeedback?: string;
|
|
};
|