I have something very strange happening... I have an array called destinations which takes objects with a dest, an amount and a memo.
My code is the following:
const destinations: { dest: string | never[]; amount: number; memo: string; }[] = [];
console.log("ELEMENT")
console.log(element)
console.log("-----")
destinations.push(
{
dest: element,
amount: 1 * 1e8,
memo: JSON.stringify(poll),
}
)
console.log("DESTINATIONS")
console.log(destinations)
console.log("-----")
Why is this happening?
Thanks in advance