diff options
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 7844a85..b7bd0e7 100644 --- a/app/src/app.d.ts +++ b/app/src/app.d.ts @@ -1,4 +1,5 @@ import type { User } from "$lib/server/users"; +import type { S3Client } from "@aws-sdk/client-s3"; import type { PoolClient } from "pg"; // See https://svelte.dev/docs/kit/types#app.d.ts @@ -9,6 +10,8 @@ declare global { interface Locals { dbConn: PoolClient; + s3Client: S3Client; + /** * The user, if they are logged in. * |