@@ -369,13 +369,13 @@ export interface IEnvAwareBuilder<TEnvironments extends string, T extends Record
369369 * @param value Value of the property.
370370 * @param hierarchySeparator Optional hierarchy separator. If not specified, colon (:) is assumed.
371371 */
372- addSingleValue < TKey extends string , TValue extends ConfigurationValue , TSep extends string = ':' > ( path : string , value ?: ConfigurationValue , hierarchySeparator ?: string ) : IEnvAwareBuilder < TEnvironments , MergeResult < T , InflateKey < TKey , TValue , TSep > > > ;
372+ addSingleValue < TKey extends string , TValue extends ConfigurationValue , TSep extends string = ':' > ( path : TKey , value ?: ConfigurationValue , hierarchySeparator ?: string ) : IEnvAwareBuilder < TEnvironments , MergeResult < T , InflateKey < TKey , TValue , TSep > > > ;
373373 /**
374374 * Adds a single value to the collection of data sources that will be used to build the configuration object.
375375 * @param dataFn Function that returns the [key, value] tuple that needs to be added.
376376 * @param hierarchySeparator Optional hierarchy separator. If not specified, colon (:) is assumed.
377377 */
378- addSingleValue < TKey extends string , TValue extends ConfigurationValue , TSep extends string = ':' > ( dataFn : ( ) => Promise < [ string , ConfigurationValue ] > , hierarchySeparator ?: string ) : IEnvAwareBuilder < TEnvironments , MergeResult < T , InflateKey < TKey , TValue , TSep > > > ;
378+ addSingleValue < TKey extends string , TValue extends ConfigurationValue , TSep extends string = ':' > ( dataFn : ( ) => Promise < [ TKey , ConfigurationValue ] > , hierarchySeparator ?: string ) : IEnvAwareBuilder < TEnvironments , MergeResult < T , InflateKey < TKey , TValue , TSep > > > ;
379379 /**
380380 * Sets the data source name of the last data source added to the builder.
381381 * @param name Name for the data source.
0 commit comments