-
Notifications
You must be signed in to change notification settings - Fork 0
/
env.d.ts
71 lines (64 loc) · 1.75 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/// <reference types="vite/client" />
/// <reference types="@shopify/remix-oxygen" />
/// <reference types="@shopify/oxygen-workers-types" />
// Enhance TypeScript's built-in typings.
import '@total-typescript/ts-reset';
import type {
CustomerAccount,
HydrogenCart,
HydrogenSessionData,
Storefront,
} from '@shopify/hydrogen';
import type {
CountryCode,
LanguageCode,
} from '@shopify/hydrogen/storefront-api-types';
import type {AppSession} from '~/lib/session';
declare global {
/**
* A global `process` object is only available during build to access NODE_ENV.
*/
const process: {
env: {
NODE_ENV: 'production' | 'development';
MAILOSAUR_API_KEY: string;
NGROK_URL: string;
CI: string;
};
};
/**
* Declare expected Env parameter in fetch handler.
*/
interface Env {
SESSION_SECRET: string;
PRIVATE_API_ACCESS_TOKEN: string;
PUBLIC_STOREFRONT_API_TOKEN: string;
PRIVATE_STOREFRONT_API_TOKEN: string;
PUBLIC_STORE_DOMAIN: string;
PUBLIC_STOREFRONT_ID: string;
PUBLIC_CUSTOMER_ACCOUNT_API_CLIENT_ID: string;
PUBLIC_CUSTOMER_ACCOUNT_API_URL: string;
PUBLIC_CHECKOUT_DOMAIN: string;
}
/**
* The I18nLocale used for Storefront API query context.
*/
type I18nLocale = {language: LanguageCode; country: CountryCode};
}
declare module '@shopify/remix-oxygen' {
/**
* Declare local additions to the Remix loader context.
*/
interface AppLoadContext {
env: Env;
cart: HydrogenCart;
storefront: Storefront<I18nLocale>;
customerAccount: CustomerAccount;
session: AppSession;
waitUntil: ExecutionContext['waitUntil'];
}
/**
* Declare local additions to the Remix session data.
*/
interface SessionData extends HydrogenSessionData {}
}