From 822fddb8d27dac5afaf48fe753c468e85ffb00c0 Mon Sep 17 00:00:00 2001 From: CanadaHonk Date: Sun, 8 Jan 2023 20:26:54 +0000 Subject: [PATCH] typedef: add missing void returns --- gluon.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gluon.d.ts b/gluon.d.ts index 13176fd..474ec74 100644 --- a/gluon.d.ts +++ b/gluon.d.ts @@ -51,7 +51,7 @@ type IPCApi = { /** Callback function to unsubscribe. */ callback: Function - ), + ): void, /** * Expose a Node function to the web context, acts as a wrapper around IPC events. @@ -71,7 +71,7 @@ type IPCApi = { unexpose( /** Key name to unexpose (remove). */ key: string - ) + ): void, }; type CDPApi = {