Add new properties
* Added guidebooks to RaidGroup * Added auto_summon to Party
This commit is contained in:
parent
33c7e7b28c
commit
3097cbe728
4 changed files with 4 additions and 0 deletions
|
|
@ -135,6 +135,7 @@ const Party = (props: Props) => {
|
|||
chargeAttack: 'charge_attack',
|
||||
fullAuto: 'full_auto',
|
||||
autoGuard: 'auto_guard',
|
||||
autoSummon: 'auto_summon',
|
||||
clearTime: 'clear_time',
|
||||
buttonCount: 'button_count',
|
||||
chainCount: 'chain_count',
|
||||
|
|
|
|||
1
types/Party.d.ts
vendored
1
types/Party.d.ts
vendored
|
|
@ -20,6 +20,7 @@ interface Party {
|
|||
raid: Raid
|
||||
full_auto: boolean
|
||||
auto_guard: boolean
|
||||
auto_summon: boolean
|
||||
charge_attack: boolean
|
||||
clear_time: number
|
||||
button_count?: number
|
||||
|
|
|
|||
1
types/RaidGroup.d.ts
vendored
1
types/RaidGroup.d.ts
vendored
|
|
@ -10,5 +10,6 @@ interface RaidGroup {
|
|||
section: number
|
||||
order: number
|
||||
extra: boolean
|
||||
guidebooks: boolean
|
||||
hl: boolean
|
||||
}
|
||||
|
|
|
|||
1
types/index.d.ts
vendored
1
types/index.d.ts
vendored
|
|
@ -29,6 +29,7 @@ export type DetailsObject = {
|
|||
[key: string]: boolean | number | string | string[] | Raid | undefined
|
||||
fullAuto?: boolean
|
||||
autoGuard?: boolean
|
||||
autoSummon?: boolean
|
||||
chargeAttack?: boolean
|
||||
clearTime?: number
|
||||
buttonCount?: number
|
||||
|
|
|
|||
Loading…
Reference in a new issue