@oliversalzburg/js-utils 0.2.8-dev-c705313 → 0.2.8-dev-a0f58fb
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.
- package/async/async.d.ts +5 -1
- package/package.json +2 -2
package/async/async.d.ts
CHANGED
|
@@ -8,7 +8,11 @@ import { AnyAsyncFunction, AnyFunctionReturning, ConstructorOf } from "../core.j
|
|
|
8
8
|
* @param context - The asynchronous function to execute.
|
|
9
9
|
* @returns A function returning nothing.
|
|
10
10
|
*/
|
|
11
|
-
export declare const prepareAsyncContext: (context: AnyAsyncFunction) => (
|
|
11
|
+
export declare const prepareAsyncContext: (context: AnyAsyncFunction) => (
|
|
12
|
+
/**
|
|
13
|
+
* The arguments that our new function was called with.
|
|
14
|
+
*/
|
|
15
|
+
...args: Array<unknown>) => void;
|
|
12
16
|
/**
|
|
13
17
|
* Executes an asynchronous function and resolves with an alternative result
|
|
14
18
|
* in case the function failed.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/package.json",
|
|
3
3
|
"name": "@oliversalzburg/js-utils",
|
|
4
|
-
"version": "0.2.8-dev-
|
|
4
|
+
"version": "0.2.8-dev-a0f58fb",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Oliver Salzburg <oliver.salzburg@gmail.com>",
|
|
7
7
|
"repository": {
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"mocha": "11.1.0",
|
|
36
36
|
"typedoc": "0.27.9",
|
|
37
37
|
"typedoc-plugin-mdn-links": "4.0.14",
|
|
38
|
-
"typescript": "5.
|
|
38
|
+
"typescript": "5.8.2"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=18"
|