hensei-web/types/RaidGroup.d.ts
Justin Edmund b2f64f1d78 Fix transformers and types
Dozens of tiny errors from me freehanding it
2023-07-07 06:47:41 -07:00

15 lines
232 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
}