From e669e493c9da0a551e37f8f22d7ddcc724e29d5b Mon Sep 17 00:00:00 2001 From: "J. Ryan Stinnett" Date: Tue, 19 Mar 2019 15:04:05 +0000 Subject: [PATCH] Add deprecation notice to `MatrixInMemoryStore` --- src/matrix.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/matrix.js b/src/matrix.js index 78c37cedd..0460927ff 100644 --- a/src/matrix.js +++ b/src/matrix.js @@ -27,6 +27,7 @@ module.exports.MemoryStore = require("./store/memory").MemoryStore; /** * The {@link module:store/memory.MemoryStore|MemoryStore} class was previously * exported as `MatrixInMemoryStore`, so this is preserved for SDK consumers. + * @deprecated Prefer `MemoryStore` going forward. */ module.exports.MatrixInMemoryStore = module.exports.MemoryStore; /** The {@link module:store/indexeddb.IndexedDBStore|IndexedDBStore} class. */