From 251dd33cbf1f105699a62b2d68e86eacfd6d7d36 Mon Sep 17 00:00:00 2001 From: LiuHao Date: Tue, 13 Jun 2023 23:05:27 +0800 Subject: [PATCH] =?UTF-8?q?add=20=E6=A8=A1=E5=9E=8B=E8=AE=BE=E8=AE=A1?= =?UTF-8?q?=E7=9A=84types?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/api/workflow/model/types.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 src/api/workflow/model/types.ts diff --git a/src/api/workflow/model/types.ts b/src/api/workflow/model/types.ts new file mode 100644 index 0000000..60cdf02 --- /dev/null +++ b/src/api/workflow/model/types.ts @@ -0,0 +1,10 @@ +export interface ModelForm { + name: string; + key: string; + description: string; +} + +export interface ModelQuery extends PageQuery { + name: string; + key: string; +}