I am dealing with multiple transactions that I intentionally do not want to group into an array. Instead, I prefer to separate them as individual fields. For example:
{
['fixtureId']: {
transactionId: string;
donation: boolean;
},
['fixtureId']: {
transactionId: string;
donation: boolean;
}
}
What would the interface for this setup look like?