diff --git a/typings/index.d.ts b/typings/index.d.ts index 76a25d30..b280d0e7 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -155,7 +155,7 @@ declare module 'discord-giveaways' { readonly embedColorEnd: ColorResolvable; readonly botsCanWin: boolean; readonly reaction: EmojiIdentifierResolvable; - readonly lastChance: LastChanceOptions; + readonly lastChance: Required; // getters calculated using other values readonly remainingTime: number; @@ -164,7 +164,7 @@ declare module 'discord-giveaways' { readonly exemptMembersFunction: Function | null; readonly bonusEntries: BonusEntry[]; readonly data: GiveawayData; - readonly pauseOptions: PauseOptions; + readonly pauseOptions: Required; readonly isDrop: boolean; private ensureEndTimeout(): void;