interface SingleSelectCollectorNoValue<T extends SingleValueCollectorTypes> {
    category: "SingleValueCollector";
    error: null | string;
    id: string;
    input: { key: string; type: string; value: string | number | boolean };
    name: string;
    output: {
        key: string;
        label: string;
        options: SelectorOption[];
        type: string;
    };
    type: T;
}

Type Parameters

Properties

category: "SingleValueCollector"
error: null | string
id: string
input: { key: string; type: string; value: string | number | boolean }
name: string
output: { key: string; label: string; options: SelectorOption[]; type: string }
type: T