-
Notifications
You must be signed in to change notification settings - Fork 0
/
remix.env.d.ts
46 lines (41 loc) · 1.3 KB
/
remix.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
36
37
38
39
40
41
42
43
44
45
46
/// <reference types="@remix-run/dev" />
/// <reference types="@shopify/remix-oxygen" />
/// <reference types="@shopify/oxygen-workers-types" />
import type {Storefront} from '~/lib/type';
import type {HydrogenSession} from '~/lib/session.server';
declare global {
/**
* A global `process` object is only available during build to access NODE_ENV.
*/
const process: {env: {NODE_ENV: 'production' | 'development'}};
/**
* Declare expected Env parameter in fetch handler.
*/
interface Env {
SESSION_SECRET: string;
PUBLIC_STOREFRONT_API_TOKEN: string;
PRIVATE_STOREFRONT_API_TOKEN: string;
PUBLIC_STOREFRONT_API_VERSION: string;
PUBLIC_STORE_DOMAIN: string;
PUBLIC_STOREFRONT_ID: string;
PRIVATE_SHOPIFY_STORE_MULTIPASS_SECRET: string;
PRIVATE_SHOPIFY_CHECKOUT_DOMAIN: string;
PUBLIC_AUTH0_CLIENT_ID: string,
PUBLIC_AUTH0_DOMAIN: string,
PUBLIC_HYDROGEN_DOMAIN: string,
}
}
/**
* Declare local additions to `AppLoadContext` to include the session utilities we injected in `server.ts`.
*/
declare module '@shopify/remix-oxygen' {
export interface AppLoadContext {
waitUntil: ExecutionContext['waitUntil'];
session: HydrogenSession;
storefront: Storefront;
cache: Cache;
env: Env;
}
}
// Needed to make this file a module.
export {};