interface ReleaseStatsResponse {
    data: ReleaseStatEntry[];
    meta: {
        end_date: string;
        global_events: any[];
        lookahead_days: number;
        start_date: string;
        user_status: "authenticated" | "guest";
    };
}

Properties

Properties

meta: {
    end_date: string;
    global_events: any[];
    lookahead_days: number;
    start_date: string;
    user_status: "authenticated" | "guest";
}

Type declaration

  • end_date: string
  • global_events: any[]
  • lookahead_days: number
  • start_date: string
  • user_status: "authenticated" | "guest"

Generated using TypeDoc