typedef: add missing void returns

This commit is contained in:
CanadaHonk 2023-01-08 20:26:54 +00:00
parent ed71e83b31
commit 822fddb8d2

4
gluon.d.ts vendored
View File

@ -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 = {