-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
vitest-env.d.ts
33 lines (31 loc) · 1.22 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
27
28
29
30
31
32
33
/// <reference types='vitest/globals' />
interface ImportMetaEnv {
readonly [x: string]: string
readonly BASE_URL: string
readonly DEV: '1' | import('@flex-development/tutils').EmptyString
readonly GITHUB_TOKEN: string
readonly INPUT_API: string
readonly INPUT_OWNER: string
readonly INPUT_REPO: string
readonly INPUT_TOKEN: string
readonly INPUT_TRAILERS: string
readonly INPUT_WORKSPACE: 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
}