www/lib/site.ts
Paul W. 82ed74229b
dep ver bump; clean-up; minor updates
Signed-off-by: Paul W. <lambdapaul@protonmail.com>
2024-12-28 12:23:50 -05:00

12 lines
159 B
TypeScript

export interface Site {
title: string;
pages?: Sites;
mtime?: string;
otime?: string;
}
export interface Sites {
[slug: string]: Site;
}