interface ObjectOptionsCollectorWithStringValue<
    T extends ObjectValueCollectorTypes,
    V = string,
> {
    category: "ObjectValueCollector";
    error: null | string;
    id: string;
    input: {
        key: string;
        type: string;
        validation: null | ValidationRequired[];
        value: V;
    };
    name: string;
    output: {
        key: string;
        label: string;
        options: DeviceOptionNoDefault[];
        type: string;
    };
    type: T;
}

Type Parameters

Properties

category: "ObjectValueCollector"
error: null | string
id: string
input: {
    key: string;
    type: string;
    validation: null | ValidationRequired[];
    value: V;
}
name: string
output: {
    key: string;
    label: string;
    options: DeviceOptionNoDefault[];
    type: string;
}
type: T