koishi-plugin-ggcevo-game 1.2.56 → 1.2.57
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.d.ts +8 -0
- package/lib/index.js +845 -268
- package/package.json +2 -2
package/lib/index.d.ts
CHANGED
|
@@ -39,6 +39,7 @@ declare module 'koishi' {
|
|
|
39
39
|
ggcevo_boss: Boss;
|
|
40
40
|
ggcevo_boss_damage: BossDamageRecord;
|
|
41
41
|
ggcevo_Wish_Record: WishRecord;
|
|
42
|
+
ggcevo_careers: careers;
|
|
42
43
|
}
|
|
43
44
|
}
|
|
44
45
|
export interface backpack {
|
|
@@ -170,4 +171,11 @@ export interface WishRecord {
|
|
|
170
171
|
endTime: Date;
|
|
171
172
|
isused: boolean;
|
|
172
173
|
}
|
|
174
|
+
export interface careers {
|
|
175
|
+
handle: string;
|
|
176
|
+
group: string;
|
|
177
|
+
career: string;
|
|
178
|
+
redcrystal: number;
|
|
179
|
+
date: Date;
|
|
180
|
+
}
|
|
173
181
|
export declare function apply(ctx: Context, config: Config): void;
|