mirror of
https://github.com/labring/FastGPT.git
synced 2025-12-25 20:02:47 +00:00
fix build
This commit is contained in:
parent
6aa4858259
commit
f93417e32b
|
|
@ -94,10 +94,10 @@ export type OutLinkSchema<T extends OutlinkAppType = undefined> = {
|
|||
export type OutLinkEditType<T = undefined> = {
|
||||
_id?: string;
|
||||
name: string;
|
||||
showCite: OutLinkSchema<T>['showCite'];
|
||||
showRunningStatus: OutLinkSchema<T>['showRunningStatus'];
|
||||
showFullText: OutLinkSchema<T>['showFullText'];
|
||||
canDownloadSource: OutLinkSchema<T>['canDownloadSource'];
|
||||
showCite?: OutLinkSchema<T>['showCite'];
|
||||
showRunningStatus?: OutLinkSchema<T>['showRunningStatus'];
|
||||
showFullText?: OutLinkSchema<T>['showFullText'];
|
||||
canDownloadSource?: OutLinkSchema<T>['canDownloadSource'];
|
||||
// response when request
|
||||
immediateResponse?: string;
|
||||
// response when error or other situation
|
||||
|
|
|
|||
Loading…
Reference in New Issue