AT Mot — a bilingual (EN/FR) daily word game native to the AT Protocol.
1/// <reference types="vite/client" />
2/// <reference types="@atcute/atproto" />
3/// <reference types="@atcute/bluesky" />
4
5interface ImportMetaEnv {
6 /** OAuth `client_id` — the public URL of client-metadata.json (or a loopback client_id in dev). */
7 readonly VITE_OAUTH_CLIENT_ID: string;
8 /** OAuth redirect URI the authorization server sends the user back to. */
9 readonly VITE_OAUTH_REDIRECT_URI: string;
10 /** OAuth scope string. */
11 readonly VITE_OAUTH_SCOPE: string;
12}
13
14interface ImportMeta {
15 readonly env: ImportMetaEnv;
16}