Interface: ConfigValueProvider
Defined in: packages/config-bound/src/bind/configValueProvider.ts:10
Interface for objects that can provide configuration values. Implemented by ConfigBound and allows elements to retrieve their values.
Methods
get()
ts
get<T>(sectionName, elementName): Promise<T | undefined>;Defined in: packages/config-bound/src/bind/configValueProvider.ts:11
Type Parameters
| Type Parameter |
|---|
T |
Parameters
| Parameter | Type |
|---|---|
sectionName | string |
elementName | string |
Returns
Promise<T | undefined>