import { ArticleEx } from '../dto/site/ArticleEx'; import { SiteTabPageProps } from './SitePageProps'; /** * Static article view page props * 静态文章浏览页面参数 */ export type StaticArticlePageProps = SiteTabPageProps & { /** * Full article data * 完整文章数据 */ article: ArticleEx; };