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) • 693 B
TypeScript
import ArticleBlogpostCommon = require("./articleBlogpostCommon");
interface BlogPostOptions extends ArticleBlogpostCommon {
/**
* Type of content, which should always be "blogpost" for BlogPost.
*/
type?: "blogpost";
/**
* The genre or category of the blog post.
* Example: 'Programming', 'Lifestyle'
*/
genre?: string;
/**
* The main body of the blog post.
* Example: 'This post will guide you through building a React app...'
*/
articleBody?: string;
/**
* An alternative headline or title for the blog post.
* Example: 'React App Building Guide'
*/
alternativeHeadline?: string;
}
export = BlogPostOptions;