From 6a2465329aba85b9f36147c2801f96b81ff802ee Mon Sep 17 00:00:00 2001 From: David Baker Date: Mon, 3 Apr 2017 17:12:30 +0100 Subject: [PATCH] Add jsdoc --- src/store/memory.js | 2 ++ src/store/stub.js | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/store/memory.js b/src/store/memory.js index d6c4bbbb0..e2d6a54ae 100644 --- a/src/store/memory.js +++ b/src/store/memory.js @@ -279,6 +279,8 @@ module.exports.MatrixInMemoryStore.prototype = { /** * setSyncData does nothing as there is no backing data store. + * + * @param {Object} syncData The sync data */ setSyncData: function(syncData) {}, diff --git a/src/store/stub.js b/src/store/stub.js index 2b64a2a2a..5234411a6 100644 --- a/src/store/stub.js +++ b/src/store/stub.js @@ -184,6 +184,8 @@ StubStore.prototype = { /** * setSyncData does nothing as there is no backing data store. + * + * @param {Object} syncData The sync data */ setSyncData: function(syncData) {},