Type alias ConfiguredEntry<Fields, Locales, Options>

ConfiguredEntry<Fields, Locales, Options>: Options extends ChainOption ? EntryWithLinkResolutionAndWithUnresolvableLinks<Fields> : Options extends ChainOption<"WITHOUT_UNRESOLVABLE_LINKS"> ? EntryWithLinkResolutionAndWithoutUnresolvableLinks<Fields> : Options extends ChainOption<"WITHOUT_LINK_RESOLUTION"> ? EntryWithoutLinkResolution<Fields> : Options extends ChainOption<"WITH_ALL_LOCALES"> ? EntryWithAllLocalesAndWithLinkResolutionAndWithUnresolvableLinks<Fields, Locales> : Options extends ChainOption<"WITHOUT_LINK_RESOLUTION"> ? EntryWithAllLocalesAndWithoutLinkResolution<Fields, Locales> : Options extends ChainOption<"WITH_ALL_LOCALES" | "WITHOUT_UNRESOLVABLE_LINKS"> ? EntryWithAllLocalesAndWithLinkResolutionAndWithoutUnresolvableLinks<Fields, Locales> : never

Type Parameters