mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-23 13:03:50 +00:00
10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
import { OutLinkChatAuthProps } from '../../support/permission/chat';
|
|
|
|
export type UpdateChatFeedbackProps = OutLinkChatAuthProps & {
|
|
appId: string;
|
|
chatId: string;
|
|
dataId: string;
|
|
userBadFeedback?: string;
|
|
userGoodFeedback?: string;
|
|
};
|