Type alias RenegotiationInput

RenegotiationInput: Optional<RenegotiationOfferInput, "lenderAddress" | "signerAddress"> & ({
    trancheIndex: Exclude<RenegotiationOfferInput["trancheIndex"], null | undefined>;
    targetPrincipal?: undefined;
} | {
    trancheIndex?: undefined;
    targetPrincipal: Exclude<RenegotiationOfferInput["targetPrincipal"], null | undefined>;
})