From bbaef373f95854ebde96296e764c5d7af9aa8e0a Mon Sep 17 00:00:00 2001 From: TomatoCake <60300461+DEVTomatoCake@users.noreply.github.com> Date: Sat, 13 Jul 2024 06:09:56 +0200 Subject: [PATCH] Run prettier .-. --- src/util/schemas/responses/TypedResponses.ts | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/util/schemas/responses/TypedResponses.ts b/src/util/schemas/responses/TypedResponses.ts index 14067844..8214ff7b 100644 --- a/src/util/schemas/responses/TypedResponses.ts +++ b/src/util/schemas/responses/TypedResponses.ts @@ -105,6 +105,9 @@ export type APILimitsConfiguration = LimitsConfiguration; export type APIStickerPackArray = StickerPack[]; -export type APIConnectionsConfiguration = Record; +export type APIConnectionsConfiguration = Record< + string, + { + enabled: boolean; + } +>;