Files
FastGPT/packages/global/core/chat/api.d.ts
2023-12-12 14:42:20 +08:00

10 lines
200 B
TypeScript

export type UpdateChatFeedbackProps = {
appId: string;
chatId: string;
chatItemId: string;
shareId?: string;
outLinkUid?: string;
userBadFeedback?: string;
userGoodFeedback?: string;
};