-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vitest-env.d.ts
26 lines (24 loc) · 1 KB
/
vitest-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
/// <reference types='vitest/globals' />
interface ImportMetaEnv {
readonly BASE_URL: string
readonly DEV: '1' | import('@flex-development/tutils').EmptyString
readonly GITHUB_TOKEN: string
readonly LINT_STAGED?: import('@flex-development/tutils').Stringify<0 | 1>
readonly MODE: import('@flex-development/tutils').NodeEnv.TEST
readonly NODE_ENV: import('@flex-development/tutils').NodeEnv.TEST
readonly PROD: '1' | import('@flex-development/tutils').EmptyString
readonly PWD: string
readonly SSR: '1' | import('@flex-development/tutils').EmptyString
readonly TEST: 'true'
readonly USER: string
readonly VITEST: 'true'
readonly VITEST_CLI_WRAPPER: 'true'
readonly VITEST_MODE: 'DEV' | 'RUN'
readonly VITEST_POOL_ID: import('@flex-development/tutils').Numeric
readonly VITEST_WORKER_ID: import('@flex-development/tutils').Numeric
readonly VITE_ROOT: string
readonly VITE_USER_NODE_ENV: import('@flex-development/tutils').NodeEnv.TEST
}
interface ImportMeta {
readonly env: ImportMetaEnv
}