-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vitest-env.d.ts
26 lines (24 loc) · 931 Bytes
/
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 LINT_STAGED?: '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 TYPESCRIPT_VERSION?: string
readonly USER: string
readonly VITEST: 'true'
readonly VITEST_CLI_WRAPPER: 'true'
readonly VITEST_MODE: 'DEV' | 'RUN'
readonly VITEST_POOL_ID: `${number}`
readonly VITEST_WORKER_ID: `${number}`
readonly VITE_ROOT: string
readonly VITE_USER_NODE_ENV: import('@flex-development/tutils').NodeEnv.TEST
}
interface ImportMeta {
readonly env: ImportMetaEnv
}