From f91efd6ab25d5db436139cf1cf896f9dc57966be Mon Sep 17 00:00:00 2001 From: BTMuli Date: Wed, 5 Apr 2023 02:05:09 +0800 Subject: [PATCH] =?UTF-8?q?fix(mys):=20=E5=8F=91=E7=8E=B0=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E5=85=B6=E4=BB=96=E6=B8=B8=E6=88=8F=EF=BC=8C=E5=A5=BD?= =?UTF-8?q?=EF=BC=8C=E6=98=8E=E5=A4=A9=E5=B0=B1=E5=8A=A0=20func?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: BTMuli --- src/plugins/Mys/interface/base.ts | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/src/plugins/Mys/interface/base.ts b/src/plugins/Mys/interface/base.ts index 75657654..4c4c1c33 100644 --- a/src/plugins/Mys/interface/base.ts +++ b/src/plugins/Mys/interface/base.ts @@ -2,7 +2,7 @@ * @file plugins Mys interface base.ts * @description Mys 插件基础接口 * @author BTMuli - * @since Alpha + * @since Alpha v0.1.2 */ /** @@ -56,3 +56,27 @@ export interface MysObc { children: MysObc[]; list: unknown[]; } + +/** + * @description Mys GID 对应的数据 + * @since Alpha v0.1.2 + * @interface MysGid + * @enum {number} + * @property {number} 1 崩坏3 + * @property {number} 2 原神 + * @property {number} 3 崩坏2 + * @property {number} 4 未定事件簿 + * @property {number} 5 大别野 + * @property {number} 6 崩坏:星穹铁道 + * @property {number} 8 绝区零 + * @return {MysGid} + */ +export enum MysGid { + BH3 = 1, + YS = 2, + BH2 = 3, + WD = 4, + DBY = 5, + SR = 6, + ZZZ = 8, +}