diff options
author | Linnnus <[email protected]> | 2025-02-19 18:37:33 +0100 |
---|---|---|
committer | Linnnus <[email protected]> | 2025-02-19 18:37:51 +0100 |
commit | f7a6244cc1a8f39ad44186a4da6b743ab6821d51 (patch) | |
tree | 54e63d1509f56caaac542a4548325f9716d42069 /app/src/app.d.ts | |
parent | 80a432fbda4ca2f35286197c636ad2a733ca4b5a (diff) |
Add assignment submission
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. * |