From c714596653200070b4ce15e2b67671ca8486034f Mon Sep 17 00:00:00 2001 From: "Jill \"oatmealine\" Monoids" Date: Fri, 17 Nov 2023 20:30:27 +0300 Subject: [PATCH] lint fix --- src/types/index.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index c3a0d45..4b89a84 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -1,10 +1,10 @@ import { Collection, SlashCommandBuilder, CommandInteraction, Client } from 'discord.js'; export interface Command { - data: Pick, - execute: (interaction: CommandInteraction) => Promise, - autocomplete?: (interaction: AutocompleteInteraction) => Promise, - onClientReady?: (client: Client) => Promise, + data: Pick, + execute: (interaction: CommandInteraction) => Promise, + autocomplete?: (interaction: AutocompleteInteraction) => Promise, + onClientReady?: (client: Client) => Promise, serverWhitelist?: string[], }