@guillaume-docquier/tools-ts 3.0.0 → 3.0.1

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/Range.d.ts +2 -2
  2. package/package.json +1 -1
package/dist/Range.d.ts CHANGED
@@ -28,7 +28,7 @@ export type InclusiveRange<TNumericType extends NumericType> = {
28
28
  /**
29
29
  * Optional outer range that this range must stay within.
30
30
  */
31
- readonly limits?: Range<TNumericType>;
31
+ readonly limits?: Range<TNumericType> | undefined;
32
32
  };
33
33
  /**
34
34
  * A finite numeric interval whose maximum value is excluded from the range.
@@ -54,7 +54,7 @@ export type ExclusiveRange<TNumericType extends NumericType> = {
54
54
  /**
55
55
  * Optional outer range that this range must stay within.
56
56
  */
57
- readonly limits?: Range<TNumericType>;
57
+ readonly limits?: Range<TNumericType> | undefined;
58
58
  };
59
59
  type NumericType = "float" | "integer";
60
60
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@guillaume-docquier/tools-ts",
3
- "version": "3.0.0",
3
+ "version": "3.0.1",
4
4
  "description": "My personal collection of typescript tools",
5
5
  "homepage": "https://github.com/Guillaume-Docquier/tools-ts",
6
6
  "repository": {