From 9740e6650f1b9439f6b1ab4be760a3b1a6d6c534 Mon Sep 17 00:00:00 2001 From: arvinxx Date: Mon, 21 Aug 2023 23:53:01 +0800 Subject: [PATCH] =?UTF-8?q?:bug:=20fix:=20=E8=A1=A5=E5=85=85=20description?= =?UTF-8?q?=20=E5=AD=97=E6=AE=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/market.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/types/market.ts b/src/types/market.ts index 5a650ab..96524f8 100644 --- a/src/types/market.ts +++ b/src/types/market.ts @@ -82,11 +82,18 @@ export interface Meta { * @descCN 插件的头像 */ avatar: string; + /** + * description + * @desc Description of the plugin + * @nameCN 描述 + * @descCN 插件的描述 + */ + description?: string; /** * tags * @desc Tags of the plugin * @nameCN 标签 * @descCN 插件的标签 */ - tags: string[]; + tags?: string[]; }