9 lines
183 B
TypeScript
9 lines
183 B
TypeScript
export type UpdateChatFeedbackProps = {
|
|
chatId: string;
|
|
chatItemId: string;
|
|
shareId?: string;
|
|
outLinkUid?: string;
|
|
userBadFeedback?: string;
|
|
userGoodFeedback?: string;
|
|
};
|