x4js - v2.2.49
    Preparing search index...

    Interface PropertyValue

    interface PropertyValue {
        callback: (name: string, value: any) => void;
        cls?: string;
        desc?: string;
        live?: boolean;
        max?: number;
        min?: number;
        name?: string;
        options?: ListItem[];
        step?: number;
        title?: string;
        type:
            | "string"
            | "number"
            | "boolean"
            | "button"
            | "label"
            | "options"
            | "password";
        value: IValue
        | IValueCB;
    }
    Index
    callback: (name: string, value: any) => void
    cls?: string
    desc?: string
    live?: boolean
    max?: number
    min?: number
    name?: string
    options?: ListItem[]
    step?: number
    title?: string
    type:
        | "string"
        | "number"
        | "boolean"
        | "button"
        | "label"
        | "options"
        | "password"
    value: IValue | IValueCB