UNPKG

@etsoo/website

Version:

ETSOO CMS Based NextJs Website Framework

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