Type Alias WxProtocolOutput<TConfig>

Source
Expand description

Output of wxCreateBus

type WxProtocolOutput<TConfig> = {
    [K in keyof TConfig]: TConfig[K] extends WxProtocolBindConfig<
        infer TSender,
    >
        ? TSender
        : never
}