From 6e6648f652a201ac685c33fb3f5720e4363608b6 Mon Sep 17 00:00:00 2001 From: BTMuli Date: Fri, 15 Dec 2023 18:52:36 +0800 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20=E9=83=A8=E5=88=86?= =?UTF-8?q?=E6=AD=A6=E5=99=A8=EF=BC=88=E8=8A=99=E5=AE=81=E5=A8=9C=E4=B8=93?= =?UTF-8?q?=E6=AD=A6=EF=BC=89=E5=8F=AF=E8=83=BD=E6=9C=89=E4=B8=A4=E4=B8=AA?= =?UTF-8?q?=E6=95=85=E4=BA=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/types/App/Weapon.d.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/types/App/Weapon.d.ts b/src/types/App/Weapon.d.ts index 1f97a1d5..b2d25ff5 100644 --- a/src/types/App/Weapon.d.ts +++ b/src/types/App/Weapon.d.ts @@ -18,7 +18,7 @@ declare namespace TGApp.App.Weapon { * @property {string} icon - 武器图标 * @return WikiBriefInfo */ - export interface WikiBriefInfo { + interface WikiBriefInfo { id: number; contentId: number; name: string; @@ -39,8 +39,8 @@ declare namespace TGApp.App.Weapon { * @property {number} star 武器星级 * @property {string} weapon 武器类型 * @property {TGApp.App.Calendar.Material[]} materials 武器培养材料 - * @property {TGACore.Components.Weapon.RhiAffix} affix 精炼描述 - * @property {string} story 武器故事 + * @property {TGApp.Plugins.Hutao.Weapon.RhiAffix} affix 精炼描述 + * @property {string|string[]} story 武器故事 * @return WikiItem */ interface WikiItem { @@ -50,7 +50,7 @@ declare namespace TGApp.App.Weapon { star: number; weapon: string; materials: TGApp.App.Calendar.Material[]; - affix: TGACore.Components.Weapon.RhiAffix; - story: string; + affix: TGApp.Plugins.Hutao.Weapon.RhiAffix; + story: string | string[]; } }