site-data/scripts/lib/page.ts
Seven Of Aces 01b5f4ab80
Some checks failed
Update meta.json / update (push) Failing after 20s
meow
2025-01-15 19:56:01 -08:00

16 lines
No EOL
306 B
TypeScript

export interface PageInfo {
title?: string,
description?: string,
author?: string,
wordCount?: number,
created: Date,
edited: Date,
tags?: Array<string>,
categories?: Array<string>
url: URL
}
export interface PageRoot {
articles: Array<PageInfo>,
note: string
}