interface ActionCollectorWithUrl<T extends ActionCollectorTypes> {
    category: "ActionCollector";
    error: null | string;
    id: string;
    name: string;
    output: { key: string; label: string; type: string; url?: null | string };
    type: T;
}

Type Parameters

Properties

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