Member Junction
    Preparing search index...

    Represents an intersection region in the Venn diagram

    interface VennIntersection {
        isSelected: boolean;
        label: string;
        recordIds: string[];
        setIds: string[];
        setLabels: string[];
        size: number;
    }
    Index

    Properties

    isSelected: boolean

    Whether this region is currently selected

    label: string

    Display label for this region

    recordIds: string[]

    Actual record IDs in this intersection

    setIds: string[]

    IDs of lists that participate in this intersection

    setLabels: string[]

    Labels of lists that participate in this intersection

    size: number

    Number of records in this intersection