19 lines
301 B
TypeScript
19 lines
301 B
TypeScript
interface Job {
|
|
id: string
|
|
granblue_id: string
|
|
row: string
|
|
ml: boolean
|
|
order: number
|
|
name: {
|
|
[key: string]: string
|
|
en: string
|
|
ja: string
|
|
}
|
|
proficiency: {
|
|
proficiency1: number
|
|
proficiency2: number
|
|
}
|
|
base_job?: Job
|
|
accessory: boolean
|
|
accessory_type: number
|
|
}
|