interface IDeviceParameters {
    default?: any;
    group?: "hide" | "default" | "advanced" | "main";
    label?: string;
    name?: string;
    options?: any[];
    type?: "number" | "switch" | "text" | "dropdown";
}

Properties

default?: any
group?: "hide" | "default" | "advanced" | "main"
label?: string
name?: string
options?: any[]
type?: "number" | "switch" | "text" | "dropdown"