From 9da4fe91c44b1d6b1ce65fb6c622499f662b608b Mon Sep 17 00:00:00 2001 From: pakkographic Date: Sun, 1 Sep 2024 22:57:55 +0200 Subject: [PATCH] ESLint fix --- lib/structures/ComponentInteraction.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/structures/ComponentInteraction.ts b/lib/structures/ComponentInteraction.ts index 309c6f8..91481d7 100644 --- a/lib/structures/ComponentInteraction.ts +++ b/lib/structures/ComponentInteraction.ts @@ -24,6 +24,7 @@ import type { } from "../types"; /** Represents a Component Interaction. */ +// eslint-disable-next-line @typescript-eslint/no-unused-vars export class ComponentInteraction extends Base { private _cachedChannel!: T extends AnyTextableChannel ? T : undefined; private _cachedGuild?: T extends AnyTextableChannel ? Guild : Guild | null;