Type Alias: IpcInvokeChannelParams<TChannel>
type IpcInvokeChannelParams<TChannel> = IpcInvokeChannelMap[TChannel]["params"];
Defined in: shared/types/ipc.ts:570
Helper type extracting the parameter tuple for a specific IPC channel.
Type Parametersโ
TChannelโ
TChannel extends IpcInvokeChannel
Remarksโ
Parameters are modeled as readonly tuples. This keeps the channel contract accurate while avoiding mapped-type instantiation edge cases that can confuse downstream tooling.