summary refs log tree commit diff
path: root/src/util/schemas
diff options
context:
space:
mode:
authorTomatoCake <60300461+DEVTomatoCake@users.noreply.github.com>2024-07-13 06:09:56 +0200
committerMadeline <46743919+MaddyUnderStars@users.noreply.github.com>2024-07-17 19:53:31 +1000
commitbbaef373f95854ebde96296e764c5d7af9aa8e0a (patch)
tree5ce10f9bda3ecfc9eccfcb660c478a25e3e3844c /src/util/schemas
parentUpdate schema & add response type (diff)
downloadserver-ts-bbaef373f95854ebde96296e764c5d7af9aa8e0a.tar.xz
Run prettier .-.
Diffstat (limited to 'src/util/schemas')
-rw-r--r--src/util/schemas/responses/TypedResponses.ts9
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; + } +>;