import { GetConfiguration } from '@nitrots/nitro-renderer'; export function GetConfigurationValue(key: string, value: T = null): T { return GetConfiguration().getValue(key, value); } export function GetOptionalConfigurationValue(key: string, value: T = null): T { return GetConfiguration().definitions.has(key) ? GetConfiguration().getValue(key, value) : value; }