forked from solidjs/solid-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenv.d.ts
More file actions
28 lines (24 loc) · 624 Bytes
/
Copy pathenv.d.ts
File metadata and controls
28 lines (24 loc) · 624 Bytes
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
interface ImportMetaEnv {
readonly VITE_ORAMA_ENDPOINT: string;
readonly VITE_ORAMA_API_KEY: string;
readonly VITE_ORAMA_SECURE_PROXY: string;
}
interface ImportMeta {
readonly env: ImportMetaEnv;
}
declare namespace NodeJS {
interface ProcessEnv {
readonly ORAMA_PROJECT_ID: string;
readonly ORAMA_DATASOURCE_ID: string;
readonly ORAMA_PUBLIC_API_KEY: string;
readonly ORAMA_PRIVATE_API_KEY: string;
}
}
declare module "solid:collection" {
// eslint-disable-next-line
const component: any;
export default component;
}
declare module "solid:hero-code-snippet" {
export const highlightedCode: string;
}