Add string to object types

For convenience
This commit is contained in:
Justin Edmund 2022-02-23 01:50:28 -08:00
parent 8678692a40
commit 717b38d5b8
3 changed files with 6 additions and 0 deletions

View file

@ -1,4 +1,6 @@
interface Character {
type: 'character'
id: string
granblue_id: string
element: number

2
types/Summon.d.ts vendored
View file

@ -1,4 +1,6 @@
interface Summon {
type: 'summon'
id: string
granblue_id: number
element: number

2
types/Weapon.d.ts vendored
View file

@ -1,4 +1,6 @@
interface Weapon {
type: 'weapon'
id: string
granblue_id: number
element: number