Problemunvalidated
I tried using `[key in FormData]:string`, but that forces me to have all fields, and not just one. Tension: I want to create a type that could encase the following: `{field1: string}` or `{field2: string}` and all other potential fields. Outcome: I don't want to make them all ignorable with `?`.
14289783-e68b-428b-bef8-1524da8a1aab
I tried using [key in FormData]:string, but that forces me to have all fields, and not just one. Tension: I want to create a type that could encase the following:
{field1: string} or {field2: string} and all other potential fields. Outcome: I don't want to make them all ignorable with ?.