senza-sdk 4.2.3 → 4.2.4

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": "senza-sdk",
3
- "version": "4.2.3",
3
+ "version": "4.2.4",
4
4
  "main": "./src/api.js",
5
5
  "description": "API for Senza application",
6
6
  "license": "MIT",
package/src/lifecycle.js CHANGED
@@ -39,10 +39,10 @@ class Lifecycle extends EventTarget {
39
39
  /**
40
40
  * @event Lifecycle#userinactivity
41
41
  * @description Fired after the ui has been inactive (i.e. no key presses) for a configurable number of seconds.<br>
42
- * @property {number} timeout - the number of milliseconds after which the application will be unloaded.
42
+ * @property {number} timeout - the number of seconds after which the application will be unloaded.
43
43
  * @example
44
44
  * lifecycle.addEventListener("userinactivity", (e) => {
45
- * console.log(`Application will be unloaded in ${e.timeout} milliseconds`);
45
+ * console.log(`Application will be unloaded in ${e.timeout} seconds`);
46
46
  * });
47
47
  * @alpha API has not yet been released
48
48
  */