Reactive form.Subscribe to multiple form values
translations.<"draft" | "published">.<"en" | "ja">.titleAnd I want to be able to switch between the translations' draft/published and locales with switches, so I did this:
as I have seen in the docs here.
But then type of both,
status and locale 's types are resolving to union of all types, i.e. as "draft" | "published" | "en" | "ja" ... is that expected behavior?