Add base_job to Job type

This commit is contained in:
Justin Edmund 2022-12-03 16:40:09 -08:00
parent 4783a664a7
commit 12f54c1e02

31
types/Job.d.ts vendored
View file

@ -1,15 +1,16 @@
interface Job { interface Job {
id: string id: string
row: string row: string
ml: boolean ml: boolean
order: number order: number
name: { name: {
[key: string]: string [key: string]: string
en: string en: string
ja: string ja: string
} }
proficiency: { proficiency: {
proficiency1: number proficiency1: number
proficiency2: number proficiency2: number
} }
} base_job?: Job
}