generated from commonknowledge/groundwork-starter-template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathenv.d.ts
35 lines (33 loc) · 850 Bytes
/
env.d.ts
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
/// <reference types="vite/client" />
declare module "*.css";
export declare global {
interface Window {
POSTHOG_PUBLIC_TOKEN?: string;
POSTHOG_URL?: string;
DEBUG: boolean;
SENTRY_PROJECT_ID?: string;
SENTRY_ORG_SLUG?: string;
SENTRY_DSN?: string;
RENDER_APP_NAME?: string;
GIT_SHA?: string;
STRIPE_LIVE_MODE: boolean;
userData?: {
is_authenticated: boolean;
set?: {
django_id: string;
email?: string;
name?: string;
stripe_customer_id?: string;
staff: boolean;
};
register: {
shipping_city?: string;
shipping_country?: string;
subscription_billing_interval?: string;
subscription_price?: string;
primary_stripe_product_name?: string;
primary_stripe_product_id?: string;
};
};
}
}