generated from StanfordBDHG/NextJSTemplate
-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathglobal.d.ts
29 lines (24 loc) · 878 Bytes
/
global.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
//
// This source file is part of the Stanford Biodesign Digital Health ENGAGE-HF open-source project
//
// SPDX-FileCopyrightText: 2023 Stanford University and the project authors (see CONTRIBUTORS.md)
//
// SPDX-License-Identifier: MIT
//
import type en from "./modules/messages/translations/en.json";
/// <reference types="vite/client" />
type Messages = typeof en;
declare global {
// Use type safe message keys with `next-intl`
interface IntlMessages extends Messages {}
interface ImportMetaEnv {
VITE_PUBLIC_FIREBASE_API_KEY: string;
VITE_PUBLIC_FIREBASE_AUTH_DOMAIN: string;
VITE_PUBLIC_FIREBASE_PROJECT_ID: string;
VITE_PUBLIC_FIREBASE_STORAGE_BUCKET: string;
VITE_PUBLIC_FIREBASE_MESSAGING_SENDER_ID: string;
VITE_PUBLIC_FIREBASE_APP_ID: string;
VITE_PUBLIC_EMULATOR: string;
VITE_PUBLIC_EMAIL_PASSWORD_SIGN_IN: string;
}
}