import { Article } from '../dto/site/Article';
import { ArticleEx } from '../dto/site/ArticleEx';
import { SiteTabPageProps } from './SitePageProps';
/**
 * Static tab view page props
 * 静态栏目浏览页面参数
 */
export type StaticTabPageProps = SiteTabPageProps & {
    /**
     * Tab article full data
     * 栏目文章完整数据
     */
    article: ArticleEx | null;
    /**
     * Articles
     * 栏目下所有文章
     */
    articles: Article[];
};
