Files
Nitro-V3/src/api/nitro/GetConfigurationValue.ts
T
DuckieTM 7feb10ab15 🆙 Init V3
2026-01-31 09:10:52 +01:00

7 lines
200 B
TypeScript

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