Files
FastGPT/packages/global/core/chat/api.d.ts
Archer 1cef206c13 Fix share page feedback auth (#3284)
* fix: share page mark auth

* perf: lang check

* perf: load share
2024-12-01 21:09:13 +08:00

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;
};