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/dist/bundle.js +1 -1
- package/package.json +1 -1
- package/src/lifecycle.js +2 -2
package/package.json
CHANGED
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
|
|
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}
|
|
45
|
+
* console.log(`Application will be unloaded in ${e.timeout} seconds`);
|
|
46
46
|
* });
|
|
47
47
|
* @alpha API has not yet been released
|
|
48
48
|
*/
|