Interface KosConfigProperty<PropertyType>

Options that are passed into the model via the constructor

interface KosConfigProperty<PropertyType> {
    updateProperty: ((value) => void);
}

Type Parameters

  • PropertyType extends ConfigPropertyTypes = ConfigPropertyTypes

Hierarchy (view full)

Properties

Properties

updateProperty: ((value) => void)

Update the property value of the config bean property resulting in a the value being pushed to the backend for persistence.

Type declaration

    • (value): void
    • Parameters

      Returns void

Returns

  • void