Type alias ProtocolResult<SK, SV, EK, EV>

ProtocolResult<SK, SV, EK, EV>: {
    [key in SK]: SV
} & {
    [key in EK]: null
} | {
    [key in SK]: null
} & {
    [key in EK]: EV
}

Type Parameters

Generated using TypeDoc