IBCMethod<M>: {
    method: M;
    type: "IBC_METHOD";
} & {
    [K in keyof IBCMethodEvents[M]]: IBCMethodEvents[M][K]
}

Type Parameters