1
mirror of https://github.com/jakejarvis/jarv.is.git synced 2025-04-28 06:30:28 -04:00
jarv.is/api/types/hits.d.ts

15 lines
196 B
TypeScript

export type PageStats = {
slug: string;
hits: number;
title?: string;
url?: URL;
date?: Date;
};
export type OverallStats = {
total: {
hits: number;
};
pages: PageStats[];
};