API reference / @localizer/core / Localized
Type Alias: Localized<T>
Localized<
T
> ={ [P in keyof T]: T[P] extends Localizable<infer U> ? U : T[P] }
Defined in: types/localizable.ts:44
Transforms a structure with Localizable
values into one with resolved types.
Type Parameters
Type Parameter | Description |
---|---|
T | The original structure containing Localizable values. |