hensei-web/types/RaidGroup.d.ts
Justin Edmund 2f5b1582cd Update types
Added RaidGroup and updated Raid, then updated dependent types and objects
2023-06-05 20:14:30 -07:00

14 lines
209 B
TypeScript

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