✏️ 类型修正

This commit is contained in:
BTMuli
2023-06-27 09:23:33 +08:00
parent c1fcc022a9
commit 64e0b89ee5

View File

@@ -3,7 +3,7 @@
* @description Hutao API
* @see HutaoRequest
* @author BTMuli <bt-muli@outlook.com>
* @since Alpha v0.2.0
* @since Alpha v0.2.1
*/
declare namespace TGApp.Plugins.Hutao {
@@ -105,18 +105,18 @@ declare namespace TGApp.Plugins.Hutao {
/**
* @description 角色信息
* @since Alpha v0.2.0
* @since Alpha v0.2.1
* @interface AbyssAvatar
* @property {number} avatarId - 角色ID
* @property {number} weaponId - 武器ID
* @property {string[]} reliquarySetIds - 圣遗物套装ID // id-pos
* @property {number[]} reliquarySetIds - 圣遗物套装ID
* @property {number} activedConstellationNumber - 已激活命座数量
* @return AbyssAvatar
*/
export interface AbyssAvatar {
avatarId: number;
weaponId: number;
reliquarySetIds: string[];
reliquarySetIds: number[];
activedConstellationNumber: number;
}