diff options
Diffstat (limited to 'src/app.d.ts')
-rw-r--r-- | src/app.d.ts | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/app.d.ts b/src/app.d.ts index ddaae39..b41fa6f 100644 --- a/src/app.d.ts +++ b/src/app.d.ts @@ -7,7 +7,16 @@ declare namespace App { sid: string | undefined } - // interface Platform {} + + interface Platform { + env: { + DISCORD_CLIENT_ID: string | undefined + SKYBLOCK_STATS_API_KEY: string | undefined + } + context: { + waitUntil(promise: Promise<any>): void + } + } interface Session { sid: string | undefined |