remove invalid keywords

This commit is contained in:
Daniel Lugo 2020-01-29 11:35:23 -04:00
parent 527072f538
commit d40f53fa85

View file

@ -315,17 +315,17 @@ const onIncomingMessages = (cb, userPK, incomingFeedID, gun, user, SEA) => {
/** /**
* @type {Outgoings} * @type {Outgoings}
*/ */
export let currentOutgoings = {} let currentOutgoings = {}
/** /**
* @type {Outgoings} * @type {Outgoings}
*/ */
export let encryptedOutgoings = {} let encryptedOutgoings = {}
/** @type {Set<OutgoingsListener>} */ /** @type {Set<OutgoingsListener>} */
const outgoingsListeners = new Set() const outgoingsListeners = new Set()
export const notifyOutgoingsListeners = () => { const notifyOutgoingsListeners = () => {
outgoingsListeners.forEach(l => l(currentOutgoings)) outgoingsListeners.forEach(l => l(currentOutgoings))
} }