type
AllLocalesOutputFor
type AllLocalesOutputFor<
Config extends RiduConfigShape,
Slug extends CollectionSlug<Config>,
> =
ContractFor<Config, Slug> extends {
allOutput: infer Output
}
? Output
: OutputFor<Config, Slug>Resolve locale-keyed collection output when generated, otherwise ordinary output.