( key: BindingAddress, propertyPath?: string, )
| 63 | * @param propertyPath - Property path for the configuration |
| 64 | */ |
| 65 | export function configBindingKeyFor<ConfigValueType = unknown>( |
| 66 | key: BindingAddress, |
| 67 | propertyPath?: string, |
| 68 | ) { |
| 69 | return BindingKey.create<ConfigValueType>( |
| 70 | BindingKey.buildKeyForConfig<ConfigValueType>(key).toString(), |
| 71 | propertyPath, |
| 72 | ); |
| 73 | } |
no test coverage detected