Skip to content

API reference / @localizer/core / ConfigurationProperties

Type Alias: ConfigurationProperties<T>

ConfigurationProperties<T> = { [K in keyof T]?: T[K] extends Configurer<infer V> ? Partial<V> : never }

Defined in: types/configuration.ts:36

Maps a type T to its configuration properties. For each key in T, extracts the configurable value type if the property is a Configurer.

Type Parameters

Type ParameterDescription
TThe type to extract configuration properties from.

See

Configurer