@nu-art/ts-common 0.203.71 → 0.203.73

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/utils/types.d.ts +1 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nu-art/ts-common",
3
- "version": "0.203.71",
3
+ "version": "0.203.73",
4
4
  "description": "js and ts infra",
5
5
  "keywords": [
6
6
  "TacB0sS",
package/utils/types.d.ts CHANGED
@@ -238,4 +238,5 @@ export type Exact<T> = {
238
238
  export type WithRequired<T, K extends keyof T> = T & {
239
239
  [P in K]-?: T[P];
240
240
  };
241
+ export type AsyncVoidFunction = () => Promise<void>;
241
242
  export {};