UNPKG

ap-ssg

Version:

A fast, modular, SEO-optimized static site generator that minifies CSS, JS, and HTML for improved performance. It also supports JSON-LD, sitemap generation, and more, making it ideal for production-ready websites.

29 lines (23 loc) 667 B
import ArticleBlogpostCommon = require("./articleBlogpostCommon"); import PersonObject = require("./person"); interface ArticleOptions extends ArticleBlogpostCommon { /** * Type of content, which should always be "article" for Article. */ type?: "article"; /** * The section or category of the article. * Example: 'Technology', 'Health' */ articleSection?: string; /** * Optional: The number of reviews or ratings for the article. * Example: 120 */ reviewCount?: number; /** * The editor or responsible person for editing the article. */ editor?: PersonObject; } export = ArticleOptions;