Represents advance options for a binding between a schema setting and a Layer property.

interface LayerExtensionSchemaPropertyBindingOptions {
    property?: string;
    readonly?: boolean;
    sync?: boolean;
    value?: unknown;
}

Properties

property?: string

Property or property path to bind to.

readonly?: boolean

Whether the binding is readonly.

sync?: boolean

True by default.

value?: unknown

Value that will always be returned for this binding.