Skip to content

Commit

Permalink
🐛 fix: 补充 description 字段
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Aug 21, 2023
1 parent 419f844 commit 9740e66
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/types/market.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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[];
}

0 comments on commit 9740e66

Please sign in to comment.