-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvitest-env.d.ts
More file actions
20 lines (18 loc) · 829 Bytes
/
vitest-env.d.ts
File metadata and controls
20 lines (18 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/// <reference types='vitest/globals' />
interface ImportMetaEnv extends Readonly<import('vite').ImportMetaEnv> {
readonly BASE_URL: string
readonly CI: 'false' | 'true'
readonly DEV: '1' | import('@flex-development/tutils').EmptyString
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 SSR: '1' | import('@flex-development/tutils').EmptyString
readonly TEST: 'true'
readonly VITEST: 'true'
readonly VITE_USER_NODE_ENV: import('@flex-development/tutils').NodeEnv.TEST
readonly VITEST_CLI_WRAPPER: 'false' | 'true'
readonly VITEST_SEGFAULT_RETRY: import('@flex-development/tutils').Numeric
}
interface ImportMeta {
readonly env: ImportMetaEnv
}