diff options
author | Linnnus <[email protected]> | 2025-02-22 06:50:02 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-02-22 06:50:02 +0100 |
commit | 6412f46a45d3b66c85c0cc3952206ad9cca0a110 (patch) | |
tree | 903016674595a980e2f443aec075d9c92a36c205 /app/src/app.d.ts | |
parent | b42bfa3abcd29cb977fbdc41a02d9f7f1ffeb1a2 (diff) |
Add watermarking service, fix everything
Diffstat (limited to 'app/src/app.d.ts')
-rw-r--r-- | app/src/app.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/app/src/app.d.ts b/app/src/app.d.ts index 6dba3f1..71e7b15 100644 --- a/app/src/app.d.ts +++ b/app/src/app.d.ts @@ -1,5 +1,6 @@ import type { User } from "$lib/server/users"; import type { S3Client } from "@aws-sdk/client-s3"; +import type BeanstalkdClient from "beanstalkd"; import type { PoolClient } from "pg"; // See https://svelte.dev/docs/kit/types#app.d.ts @@ -12,6 +13,8 @@ declare global { s3Client: S3Client; + beanstalkdClient: BeanstalkdClient; + /** * The user, if they are logged in. * |