export interface ProviderInfo { | |
color: string; | |
authors: string[]; | |
} | |
export interface ModelData { | |
createdAt: string; | |
id: string; | |
} | |
export interface Activity { | |
date: string; | |
count: number; | |
level: number; | |
} | |
export interface CalendarData { | |
[key: string]: Activity[]; | |
} | |
export interface OpenSourceHeatmapProps { | |
calendarData: CalendarData; | |
author: string; | |
color: string; | |
providers: Record<string, ProviderInfo>; | |
} | |