Drill-down modal data structure

interface DrillDownData {
    type: "status" | "format" | "genre" | "date";
    value: string;
    data: {
        title: string;
        chapters: number;
        status: string;
        confidence?: number;
        format?: string;
    }[];
}

Properties

Properties

type: "status" | "format" | "genre" | "date"

What was clicked

value: string

The specific value clicked (e.g., "Action" genre)

data: {
    title: string;
    chapters: number;
    status: string;
    confidence?: number;
    format?: string;
}[]

Detailed breakdown