mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2026-01-14 10:42:56 -05:00
16 lines
242 B
TypeScript
16 lines
242 B
TypeScript
export type PageStats = {
|
|
hits: number;
|
|
};
|
|
|
|
export type DetailedPageStats = PageStats & {
|
|
slug: string;
|
|
title?: string;
|
|
url?: string;
|
|
date?: string;
|
|
};
|
|
|
|
export type SiteStats = {
|
|
total: PageStats;
|
|
pages: DetailedPageStats[];
|
|
};
|