From 4784a8113ffb2b68a08fa80283bf306ce0964299 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Sun, 8 Jan 2023 01:31:43 -0800 Subject: [PATCH] Make everything in DetailsObject optional --- types/index.d.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/types/index.d.ts b/types/index.d.ts index 4541c991..d73e4242 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -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 }