ctx-core 6.1.2 → 6.1.3
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,7 +1,4 @@
|
|
|
1
1
|
export function import_meta_env_() {
|
|
2
|
-
return import_meta_env__ensure()
|
|
3
|
-
}
|
|
4
|
-
export function import_meta_env__ensure() {
|
|
5
2
|
if (!import.meta.env) {
|
|
6
3
|
import.meta.env = new Proxy(globalThis.process?.env ?? {}, {
|
|
7
4
|
get(target, prop, receiver) {
|
|
@@ -14,3 +11,4 @@ export function import_meta_env__ensure() {
|
|
|
14
11
|
}
|
|
15
12
|
return import.meta.env
|
|
16
13
|
}
|
|
14
|
+
export { import_meta_env_ as import_meta_env__ensure }
|
package/all/queue/index.d.ts
CHANGED
|
@@ -16,8 +16,8 @@ export interface queue_T {
|
|
|
16
16
|
get item_count():number
|
|
17
17
|
}
|
|
18
18
|
export interface queue_waiting_T {
|
|
19
|
-
fn:()=>Promise<
|
|
20
|
-
fulfil:(v:
|
|
21
|
-
reject:(err:
|
|
19
|
+
fn:()=>Promise<unknown>
|
|
20
|
+
fulfil:(v:unknown)=>void
|
|
21
|
+
reject:(err:unknown)=>void
|
|
22
22
|
}
|
|
23
23
|
export type queue_item_T = queue_waiting_T
|