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