Add guidebooks to DetailsObject

This commit is contained in:
Justin Edmund 2023-04-20 02:34:54 -07:00
parent e5e135703f
commit 715fa021de

3
types/index.d.ts vendored
View file

@ -26,7 +26,7 @@ export type PaginationObject = {
} }
export type DetailsObject = { export type DetailsObject = {
[key: string]: boolean | number | string | Raid | undefined [key: string]: boolean | number | string | string[] | Raid | undefined
fullAuto?: boolean fullAuto?: boolean
autoGuard?: boolean autoGuard?: boolean
chargeAttack?: boolean chargeAttack?: boolean
@ -39,6 +39,7 @@ export type DetailsObject = {
raid?: Raid raid?: Raid
job?: Job job?: Job
extra?: boolean extra?: boolean
guidebooks?: string[]
} }
export type ExtendedMastery = { export type ExtendedMastery = {