From f93417e32b522087ba18246967b5e3e39d89f7bb Mon Sep 17 00:00:00 2001 From: heheer Date: Mon, 22 Dec 2025 15:42:46 +0800 Subject: [PATCH] fix build --- packages/global/support/outLink/type.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/global/support/outLink/type.d.ts b/packages/global/support/outLink/type.d.ts index a9e19655c..60a304dbe 100644 --- a/packages/global/support/outLink/type.d.ts +++ b/packages/global/support/outLink/type.d.ts @@ -94,10 +94,10 @@ export type OutLinkSchema = { export type OutLinkEditType = { _id?: string; name: string; - showCite: OutLinkSchema['showCite']; - showRunningStatus: OutLinkSchema['showRunningStatus']; - showFullText: OutLinkSchema['showFullText']; - canDownloadSource: OutLinkSchema['canDownloadSource']; + showCite?: OutLinkSchema['showCite']; + showRunningStatus?: OutLinkSchema['showRunningStatus']; + showFullText?: OutLinkSchema['showFullText']; + canDownloadSource?: OutLinkSchema['canDownloadSource']; // response when request immediateResponse?: string; // response when error or other situation