mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
13 lines
427 B
TypeScript
13 lines
427 B
TypeScript
import type { HistoryItemType } from '../../core/chat/type.d';
|
|
import { OutLinkSchema } from './type.d';
|
|
|
|
export type AuthOutLinkInitProps = {
|
|
outLinkUid: string;
|
|
tokenUrl?: string;
|
|
};
|
|
export type AuthOutLinkChatProps = { ip?: string | null; outLinkUid: string; question: string };
|
|
export type AuthOutLinkLimitProps = AuthOutLinkChatProps & { outLink: OutLinkSchema };
|
|
export type AuthOutLinkResponse = {
|
|
uid: string;
|
|
};
|