2025-01-15 18:47:33 -08:00
|
|
|
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 {
|
2025-01-15 19:56:01 -08:00
|
|
|
articles: Array<PageInfo>,
|
|
|
|
note: string
|
2025-01-15 18:47:33 -08:00
|
|
|
}
|