From cecf6a9d2e394a6d11c9c723b4909c2558cf436f Mon Sep 17 00:00:00 2001 From: Daniel Lugo Date: Sat, 29 Jan 2022 15:35:32 -0500 Subject: [PATCH] Return typing even though it's not currently used --- services/gunDB/Mediator/index.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/services/gunDB/Mediator/index.js b/services/gunDB/Mediator/index.js index a906c2a3..dba5a510 100644 --- a/services/gunDB/Mediator/index.js +++ b/services/gunDB/Mediator/index.js @@ -280,6 +280,9 @@ const isAuthenticated = () => typeof user.is === 'object' && user.is !== null const isAuthenticating = () => _isAuthenticating const isRegistering = () => _isRegistering +/** + * @returns {import('../contact-api/SimpleGUN').GUNNode} + */ const getGun = () => { throw new Error('NO GUNS') }