ixfx
    Preparing search index...

    Type Alias DomBindValueTarget

    type DomBindValueTarget = {
        attribName?: string;
        cssProperty?: string;
        cssVariable?: string;
        elField?: string;
        htmlContent?: boolean;
        textContent?: boolean;
    }
    Index

    Properties

    attribName?: string

    If set, this DOM attribute is set, Eg 'width'

    cssProperty?: string

    If set, this CSS property is set, Eg 'background-color'

    cssVariable?: string

    If set, this CSS variable is set, Eg 'hue' (sets '--hue')

    elField?: string

    If set, this DOM element field is set. Eg 'textContent'

    htmlContent?: boolean

    If true innerHTML is set (a shortcut for elField:innerHTML)

    textContent?: boolean

    If true, 'textContent' is set (a shortcut for elField:'textContext')