-
Notifications
You must be signed in to change notification settings - Fork 452
Expand file tree
/
Copy pathenv.d.ts
More file actions
42 lines (37 loc) · 1.29 KB
/
env.d.ts
File metadata and controls
42 lines (37 loc) · 1.29 KB
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
37
38
39
40
41
42
/// <reference types="astro/client" />
interface InternalEnv {
readonly PUBLIC_CLERK_FRONTEND_API?: string;
readonly PUBLIC_CLERK_PUBLISHABLE_KEY?: string;
readonly PUBLIC_CLERK_JS_URL?: string;
readonly PUBLIC_CLERK_JS_VERSION?: string;
readonly PUBLIC_CLERK_UI_URL?: string;
readonly PUBLIC_CLERK_UI_VERSION?: string;
readonly PUBLIC_CLERK_PREFETCH_UI?: string;
readonly PUBLIC_CLERK_SKIP_JS_CDN?: string;
readonly CLERK_API_KEY?: string;
readonly CLERK_API_URL?: string;
readonly CLERK_API_VERSION?: string;
readonly CLERK_JWT_KEY?: string;
readonly CLERK_SECRET_KEY?: string;
readonly CLERK_MACHINE_SECRET_KEY?: string;
readonly PUBLIC_CLERK_DOMAIN?: string;
readonly PUBLIC_CLERK_IS_SATELLITE?: string;
readonly PUBLIC_CLERK_PROXY_URL?: string;
readonly PUBLIC_CLERK_SIGN_IN_URL?: string;
readonly PUBLIC_CLERK_SIGN_UP_URL?: string;
readonly PUBLIC_CLERK_TELEMETRY_DISABLED?: string;
readonly PUBLIC_CLERK_TELEMETRY_DEBUG?: string;
}
interface ImportMeta {
readonly env: InternalEnv;
}
declare namespace App {
interface Locals {
runtime: { env: InternalEnv };
}
}
declare module 'virtual:@clerk/astro/config' {
import type { AstroConfig } from 'astro';
export const astroConfig: AstroConfig;
export function isStaticOutput(forceStatic?: boolean): boolean;
}