forked from clerk/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
38 lines (33 loc) · 1.13 KB
/
Copy pathenv.d.ts
File metadata and controls
38 lines (33 loc) · 1.13 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
/// <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_VARIANT?: 'headless' | '';
readonly PUBLIC_CLERK_JS_VERSION?: 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 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;
}