@esposter/shared 2.3.0 → 2.4.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +2 -0
  2. package/package.json +2 -2
package/dist/index.d.ts CHANGED
@@ -721,6 +721,7 @@ type TupleSplitTail<T, N extends number, O extends unknown[] = []> = O["length"]
721
721
 
722
722
  //#endregion
723
723
  //#region src/util/types/TupleSplit.d.ts
724
+ // https://stackoverflow.com/questions/67605122/obtain-a-slice-of-a-typescript-parameters-tuple
724
725
  type TupleSplit<T extends unknown[], N extends number> = [TupleSplitHead<T, N>, TupleSplitTail<T, N>];
725
726
 
726
727
  //#endregion
@@ -741,6 +742,7 @@ declare const exhaustiveGuard: (value: never) => never;
741
742
 
742
743
  //#endregion
743
744
  //#region src/util/id/uuid/constants.d.ts
745
+ /* eslint-disable @typescript-eslint/no-inferrable-types */
744
746
  declare const NIL = "00000000-0000-0000-0000-000000000000";
745
747
  declare const UUIDV4_REGEX: RegExp;
746
748
  declare const UUIDV4_SEARCH_REGEX: RegExp;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@esposter/shared",
3
- "version": "2.3.0",
3
+ "version": "2.4.0",
4
4
  "description": "A library that contains shared typescript code.",
5
5
  "type": "module",
6
6
  "homepage": "https://github.com/Esposter/Esposter#readme",
@@ -28,5 +28,5 @@
28
28
  "typecheck": "tsc",
29
29
  "export:gen": "ctix build --config ../configuration/.ctirc-ts"
30
30
  },
31
- "gitHead": "5738dd0273ab8d7861296378a24903699b1fb4b8"
31
+ "gitHead": "b17224ff11ad2688c5406413ca6e066f3e565abf"
32
32
  }