Skip to content

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 ParameterDescription
TThe original structure containing Localizable values.

See

Localizable