mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-28 06:30:28 -04:00
15 lines
196 B
TypeScript
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[];
|
|
};
|