1
0
mirror of https://github.com/matrix-org/matrix-js-sdk.git synced 2025-08-19 16:42:09 +03:00

Bump to 0.2.0 - Add missing jsdoc, update CHANGELOG.

This commit is contained in:
Kegan Dougal
2015-07-28 11:45:46 +01:00
parent 9993e5dbed
commit 3905e56e1f
4 changed files with 75 additions and 12 deletions

View File

@@ -243,5 +243,16 @@ function PushProcessor(client) {
};
}
/**
* @typedef PushAction
* @type {Object}
* @property {boolean} notify Whether this event should notify the user or not.
* @property {Object} tweaks How this event should be notified.
* @property {boolean} tweaks.highlight Whether this event should be highlighted
* on the UI.
* @property {boolean} tweaks.sound Whether this notification should produce a
* noise.
*/
/** The PushProcessor class. */
module.exports = PushProcessor;