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

27
types/Job.d.ts vendored
View file

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