ProjectActivityStats
type ProjectActivityStats = {
dayItems: {
date: string;
totalCount: number;
}[];
weekItems: | {
fromDate: string;
toDate: string;
totalCount: number;
}[]
| null;
};
Project activity statistics with daily and optional weekly rollups.
Type Declaration
| Name | Type |
|---|---|
dayItems | { date: string; totalCount: number; }[] |
weekItems | | { fromDate: string; toDate: string; totalCount: number; }[] | null |