Add base_job to Job type
This commit is contained in:
parent
4783a664a7
commit
12f54c1e02
1 changed files with 16 additions and 15 deletions
27
types/Job.d.ts
vendored
27
types/Job.d.ts
vendored
|
|
@ -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
|
||||
}
|
||||
Loading…
Reference in a new issue