cfahlgren1's picture
cfahlgren1 HF staff
add path param for user page
c798beb
raw
history blame
437 Bytes
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>;
}