Closed murtadha closed 5 years ago
If we have an object with no specified properties, the generated flow type results into {}, which means this object cannot have any fields. Instead, we want to allow the object to have any fields, so the right type should be {...}
{}
{...}
If we have an object with no specified properties, the generated flow type results into
{}
, which means this object cannot have any fields. Instead, we want to allow the object to have any fields, so the right type should be{...}