mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-04-28 04:50:28 -04:00
19 lines
285 B
TypeScript
19 lines
285 B
TypeScript
type PageStats = {
|
|
title?: string;
|
|
url?: string;
|
|
date?: string;
|
|
slug: string;
|
|
hits: number;
|
|
pretty_hits: string;
|
|
pretty_unit: string;
|
|
};
|
|
|
|
type OverallStats = {
|
|
total: {
|
|
hits: number;
|
|
pretty_hits?: string;
|
|
pretty_unit?: string;
|
|
};
|
|
pages: PageStats[];
|
|
};
|