@naturalcycles/js-lib 14.223.0 → 14.224.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.
package/dist/types.d.ts CHANGED
@@ -177,6 +177,8 @@ export type UnixTimestampNumber = number;
177
177
  * @example 1628945450000
178
178
  */
179
179
  export type UnixTimestampMillisNumber = number;
180
+ export type NumberOfHours = number;
181
+ export type NumberOfMinutes = number;
180
182
  export type NumberOfSeconds = number;
181
183
  export type NumberOfMilliseconds = number;
182
184
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@naturalcycles/js-lib",
3
- "version": "14.223.0",
3
+ "version": "14.224.0",
4
4
  "scripts": {
5
5
  "prepare": "husky",
6
6
  "build-prod": "build-prod-esm-cjs",
package/src/types.ts CHANGED
@@ -233,6 +233,8 @@ export type UnixTimestampNumber = number
233
233
  */
234
234
  export type UnixTimestampMillisNumber = number
235
235
 
236
+ export type NumberOfHours = number
237
+ export type NumberOfMinutes = number
236
238
  export type NumberOfSeconds = number
237
239
  export type NumberOfMilliseconds = number
238
240