Type Alias: BridgeResult<TChannel>
type BridgeResult<TChannel> =
IpcInvokeChannelResult<TChannel> extends undefined
? Promise<void>
: Promise<IpcInvokeChannelResult<TChannel>>;
Defined in: shared/types/preload.ts:49
Internal
Resolves to the appropriate promise result type for a channel.
Type Parametersโ
TChannelโ
TChannel extends IpcInvokeChannel