@ancon/wildcat-utils 1.41.13 → 1.41.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ancon/wildcat-utils",
3
- "version": "1.41.13",
3
+ "version": "1.41.14",
4
4
  "private": false,
5
5
  "main": "index.js",
6
6
  "module": "index.mjs",
@@ -7,7 +7,7 @@ declare type TimeFormat = 'HH:mm' | 'HH:mm:ss';
7
7
  * This function calculates the end time of a time period with the duration.
8
8
  *
9
9
  * @param timePeriod The time period object with `from` and `duration`.
10
- * @param withSeconds The flag to include seconds in the result.
10
+ * @param format The format of the time. Default is `HH:mm`.
11
11
  * @returns The end time of the time period.
12
12
  */
13
13
  export default function getEndTimeSpanOfTimePeriod(timePeriod: TimePeriod, format?: TimeFormat): string;