Skip to main content

Class: NumericMaxConfig

A configuration object which defines a factory for a numeric value which is the maximum of one or more inputs.

Implements

Constructors

constructor

new NumericMaxConfig(element, factory): NumericMaxConfig

Creates a new NumericMaxConfig from a configuration document element.

Parameters

NameTypeDescription
elementElementA configuration document element.
factoryConfigFactoryA configuration object factory to use to create child configuration objects.

Returns

NumericMaxConfig

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Config/NumericConfig.ts:132

Properties

inputs

Readonly inputs: readonly NumericConfig[]

The inputs of this config.

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Config/NumericConfig.ts:125


isNumericConfig

Readonly isNumericConfig: true

Flags this object as a NumericConfig.

Implementation of

NumericConfig.isNumericConfig

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Config/NumericConfig.ts:122


isResolvableConfig

Readonly isResolvableConfig: true

Flags this object as a ResolvableConfig.

Implementation of

NumericConfig.isResolvableConfig

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Config/NumericConfig.ts:121

Methods

resolve

resolve(): (context?: any) => number | MappedSubscribable<number>

Resolves this config to a value.

Returns

fn

This config's resolved value.

▸ (context?): number | MappedSubscribable<number>

Parameters
NameType
context?any
Returns

number | MappedSubscribable<number>

Implementation of

NumericConfig.resolve

Defined in

src/workingtitle-instruments-g3000/html_ui/Pages/VCockpit/Instruments/NavSystems/WTG3000/Shared/Config/NumericConfig.ts:154