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 Parameter | Description |
---|---|
T | The type to extract configuration properties from. |