From 12f54c1e024544f23bff981b105787b8a6200844 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sat, 3 Dec 2022 16:40:09 -0800 Subject: [PATCH] Add base_job to Job type --- types/Job.d.ts | 31 ++++++++++++++++--------------- 1 file changed, 16 insertions(+), 15 deletions(-) diff --git a/types/Job.d.ts b/types/Job.d.ts index bab89b90..7c1f5939 100644 --- a/types/Job.d.ts +++ b/types/Job.d.ts @@ -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 - } -} \ No newline at end of file +interface Job { + id: string + row: string + ml: boolean + order: number + name: { + [key: string]: string + en: string + ja: string + } + proficiency: { + proficiency1: number + proficiency2: number + } + base_job?: Job +}