dep ver bump; clean-up; minor updates

Signed-off-by: Paul W. <lambdapaul@protonmail.com>
This commit is contained in:
2024-12-28 12:23:50 -05:00
parent ff03bd50ff
commit 82ed74229b
28 changed files with 424 additions and 410 deletions

View File

@@ -1,11 +1,11 @@
export interface Site {
title: string;
subpages?: SiteSubPages;
pages?: Sites;
mtime?: string;
otime?: string;
}
export interface SiteSubPages {
export interface Sites {
[slug: string]: Site;
}