ctx-core 5.33.0 → 5.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
export function import_meta_env_<R extends
|
|
2
|
-
export function import_meta_env__ensure<R extends
|
|
1
|
+
export function import_meta_env_<R extends import_meta_env_T>():R
|
|
2
|
+
export function import_meta_env__ensure<R extends import_meta_env_T>():R
|
|
3
3
|
declare global {
|
|
4
|
-
interface
|
|
5
|
-
readonly env:
|
|
4
|
+
interface import_meta_T {
|
|
5
|
+
readonly env:import_meta_env_T
|
|
6
6
|
}
|
|
7
7
|
}
|
|
8
|
-
interface
|
|
8
|
+
interface import_meta_env_T {
|
|
9
9
|
[key:string]:string
|
|
10
10
|
}
|