✏️ 简化类型定义

This commit is contained in:
BTMuli
2023-12-20 00:28:10 +08:00
parent 369d62f4e7
commit 0d5d77e2bd

View File

@@ -36,20 +36,10 @@ declare namespace TGApp.App.Character {
* @description Wiki 页详细信息-角色技能 * @description Wiki 页详细信息-角色技能
* @since Beta v0.3.8 * @since Beta v0.3.8
* @interface WikiSkill * @interface WikiSkill
* @memberof TGApp.Plugins.Hutao.Character * @memberof TGApp.App.Character
* @property {number} GroupId 技能组编号 * @return WikiSkill
* @property {number} Id 技能编号
* @property {string} Name 技能名称
* @property {string} Description 技能描述
* @property {string} Icon 技能图标
*/ */
interface WikiSkill { type WikiSkill = Omit<TGApp.Plugins.Hutao.Character.RhisdSkill, "Proud">;
GroupId: number;
Id: number;
Name: string;
Description: string;
Icon: string;
}
/** /**
* @description Wiki 详细数据 * @description Wiki 详细数据