hensei-web/types/RaidGroup.d.ts
Justin Edmund 3097cbe728 Add new properties
* Added guidebooks to RaidGroup
* Added auto_summon to Party
2023-06-17 23:42:32 -07:00

15 lines
231 B
TypeScript

interface RaidGroup {
id: string
name: {
[key: string]: string
en: string
ja: string
}
raids: Raid[]
difficulty: number
section: number
order: number
extra: boolean
guidebooks: boolean
hl: boolean
}