Type Alias ConfigValueMap<SchemaT, EnvironmentT>

ConfigValueMap: {
    [K in keyof SchemaT]: ConfigValueForType<SchemaT[K], EnvironmentT>
}

Maps configuration schema to configuration values with metadata.

Type Parameters

  • SchemaT
  • EnvironmentT extends readonly string[]