interface SingleValueCollectorWithValue<
    T extends SingleValueCollectorTypes,
    V = string,
> {
    category: "SingleValueCollector";
    error: null | string;
    id: string;
    input: { key: string; type: string; value: V };
    name: string;
    output: { key: string; label: string; type: string; value: V };
    type: T;
}

Type Parameters

Properties

category: "SingleValueCollector"
error: null | string
id: string
input: { key: string; type: string; value: V }
name: string
output: { key: string; label: string; type: string; value: V }
type: T