Skip to content

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

ParameterType
sectionNamestring
elementNamestring

Returns

Promise<T | undefined>