Add MentionItem type

This stores the data we might need for displaying an item mention
This commit is contained in:
Justin Edmund 2023-08-21 17:26:00 -07:00
parent 3e4f1d37a5
commit eb772923da

10
types/MentionItem.d.ts vendored Normal file
View file

@ -0,0 +1,10 @@
interface MentionItem {
name: {
[key: string]: string
en: string
ja: string
}
type: string
granblue_id: string
element: GranblueElement
}