-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
36 lines (30 loc) · 818 Bytes
/
Copy pathenv.d.ts
File metadata and controls
36 lines (30 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
interface ImportMetaEnv {
/**
* The refresh token is used to receive a new access token without the authentication procedure.
*/
readonly REFRESH_TOKEN: string;
/**
* The authentication code is the Base64-encoded value of `client_id:client_secret`.
* It is necessary for getting a new access token using the `refreshToken`.
*/
readonly AUTHENTICATION_CODE: Base64URLString;
/**
* The Turso database URL.
*/
readonly ASTRO_DB_REMOTE_URL: string;
/**
* The JSON Web Token (JWT) for database access. Generated by Turso.
*/
readonly ASTRO_DB_APP_TOKEN: string;
/**
* API key for accessing the Steamworks Web API endpoints.
*/
readonly STEAM_API_KEY: string;
/**
* ID for the steam user.
*/
readonly STEAM_USER_ID: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}