1 files 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<string, {
- enabled: boolean;
-}>;
+export type APIConnectionsConfiguration = Record<
+ string,
+ {
+ enabled: boolean;
+ }
+>;
|