@tsed/config
Version:
Configuration management for Ts.ED
14 lines (13 loc) • 454 B
JavaScript
import { Inject } from "@tsed/di";
import { CONFIG_SOURCES } from "../constants/constants.js";
/**
* Injects a specific configuration source by its name.
*
* @param {string} name - The name of the configuration source to inject.
* @return {Function} A decorator that resolves the configuration source dynamically.
*/
export function InjectConfigSource(name) {
return Inject(CONFIG_SOURCES, (configs) => {
return configs[name];
});
}