@rimbu/common 0.10.0 → 0.10.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.
- package/dist/types/range.d.ts +2 -2
- package/package.json +2 -2
- package/src/range.ts +2 -2
package/dist/types/range.d.ts
CHANGED
|
@@ -29,7 +29,7 @@ export declare namespace Range {
|
|
|
29
29
|
* @param range - the `Range` to use
|
|
30
30
|
*/
|
|
31
31
|
function getNormalizedRange<T>(range: Range<T>): {
|
|
32
|
-
start?: [T, boolean];
|
|
33
|
-
end?: [T, boolean];
|
|
32
|
+
start?: [T, boolean] | undefined;
|
|
33
|
+
end?: [T, boolean] | undefined;
|
|
34
34
|
};
|
|
35
35
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rimbu/common",
|
|
3
|
-
"version": "0.10.
|
|
3
|
+
"version": "0.10.3",
|
|
4
4
|
"description": "Common types and objects used in many other Rimbu packages",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"common",
|
|
@@ -63,5 +63,5 @@
|
|
|
63
63
|
"dependencies": {
|
|
64
64
|
"tslib": "^2.4.0"
|
|
65
65
|
},
|
|
66
|
-
"gitHead": "
|
|
66
|
+
"gitHead": "c4009664c4e15f367e963d198cacd7c5fc182a4d"
|
|
67
67
|
}
|
package/src/range.ts
CHANGED
|
@@ -24,8 +24,8 @@ export namespace Range {
|
|
|
24
24
|
* @param range - the `Range` to use
|
|
25
25
|
*/
|
|
26
26
|
export function getNormalizedRange<T>(range: Range<T>): {
|
|
27
|
-
start?: [T, boolean];
|
|
28
|
-
end?: [T, boolean];
|
|
27
|
+
start?: [T, boolean] | undefined;
|
|
28
|
+
end?: [T, boolean] | undefined;
|
|
29
29
|
} {
|
|
30
30
|
let start: [T, boolean] | undefined = undefined;
|
|
31
31
|
let end: [T, boolean] | undefined = undefined;
|