-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathenv.d.ts
More file actions
28 lines (26 loc) · 726 Bytes
/
Copy pathenv.d.ts
File metadata and controls
28 lines (26 loc) · 726 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
// Generated by Bun plugin at 11/21/2024, 1:27:44 PM
declare namespace NodeJS {
export interface ProcessEnv {
CLIENT_ID: string
CLIENT_SECRET: string
PRIVATE_TOKEN: string
API_BASE_URL: string
REDIRECT_URL: string
APP_ID: string
DOCS_USERNAME: string
DOCS_PASSWORD: string
NPM_TOKEN: string
HIGHLEVEL_API_KEY: string
DOCS_API_URL: string
GITHUB_TOKEN: string
SSO_KEY: string
JWT_SECRET: string
}
}
//---------------------------------------------------------------------//
//-----------------------ADD YOUR CODE BELOW---------------------------//
//---------------------------------------------------------------------//
declare module '*.css' {
const content: string
export default content
}