From fc76e290aca2099272ad11ed33aa546447eca734 Mon Sep 17 00:00:00 2001 From: xiaocp2009 <39615122+xiaocp2009@users.noreply.github.com> Date: Wed, 5 Nov 2025 14:07:34 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A1=A5:=E8=A7=A3=E5=86=B3=E6=97=A0=E6=B3=95?= =?UTF-8?q?=E6=9F=A5=E7=9C=8B=E5=B7=A5=E4=BD=9C=E6=B5=81=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E7=9A=84bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- cds-fontend-2025.V1/src/typings/common.d.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cds-fontend-2025.V1/src/typings/common.d.ts b/cds-fontend-2025.V1/src/typings/common.d.ts index 699d3b3..d2adc34 100644 --- a/cds-fontend-2025.V1/src/typings/common.d.ts +++ b/cds-fontend-2025.V1/src/typings/common.d.ts @@ -43,4 +43,7 @@ declare namespace CommonType { /** filter function */ filterFn?: (node: any) => boolean; }; + + /** the type of workflow table operate */ + type WorkflowTableOperateType = 'add' | 'edit' | 'detail' | 'approval'; }