Make everything in DetailsObject optional
This commit is contained in:
parent
018aaefa81
commit
4784a8113f
1 changed files with 6 additions and 4 deletions
10
types/index.d.ts
vendored
10
types/index.d.ts
vendored
|
|
@ -22,14 +22,16 @@ export type PaginationObject = {
|
|||
|
||||
export type DetailsObject = {
|
||||
[key: string]: boolean | number | string | Raid | undefined
|
||||
fullAuto: boolean
|
||||
autoGuard: boolean
|
||||
chargeAttack: boolean
|
||||
clearTime: number
|
||||
fullAuto?: boolean
|
||||
autoGuard?: boolean
|
||||
chargeAttack?: boolean
|
||||
clearTime?: number
|
||||
buttonCount?: number
|
||||
turnCount?: number
|
||||
chainCount?: number
|
||||
name?: string
|
||||
description?: string
|
||||
raid?: Raid
|
||||
job?: Job
|
||||
extra?: boolean
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue