interface NoValueCollectorBase<T extends NoValueCollectorTypes> {
    category: "NoValueCollector";
    error: null | string;
    id: string;
    name: string;
    output: { key: string; label: string; type: string };
    type: T;
}

Type Parameters

Properties

category: "NoValueCollector"
error: null | string
id: string
name: string
output: { key: string; label: string; type: string }
type: T