import type { NoteFrontMatter } from "./note"; export type PageStats = { hits: number; }; export type DetailedPageStats = PageStats & Pick & { url: string; }; export type SiteStats = { total: PageStats; pages: DetailedPageStats[]; };