interface BooleanCollector {
    category: "SingleValueCollector";
    error: null | string;
    id: string;
    input: { key: string; type: string; value: boolean };
    name: string;
    output: { key: string; label: string; type: string; value: boolean } & {
        appearance: string;
        richContent?: CollectorRichContent;
    };
    type: "BooleanCollector";
}

Hierarchy (View Summary)

Properties

category: "SingleValueCollector"
error: null | string
id: string
input: { key: string; type: string; value: boolean }
name: string
output: { key: string; label: string; type: string; value: boolean } & {
    appearance: string;
    richContent?: CollectorRichContent;
}
type: "BooleanCollector"