@@ -61,7 +61,7 @@ export interface IArticleDataRequest {
uid: string;
title: string;
subtitle: string;
- summary: string;
+ summary?: string | null;
content?: string;
content_type?: string;
status: number;
@@ -80,7 +80,8 @@ export interface IArticleDataResponse {
+ summary: string | null;
+ _summary?: string;
toc?: IChapterToc[];
@@ -25,6 +25,7 @@ export interface ICommentApiData {
content_type?: TContentType;
html?: string;
+ summary?: string;
parent?: string;
tpl_id?: string;
status?: "active" | "close";
@@ -24,7 +24,7 @@ interface IFormData {
@@ -67,7 +67,7 @@ interface DataItem {
id: string;
anthologyCount?: number;
anthologyTitle?: string;
publicity: number;
@@ -15,7 +15,7 @@ interface DataItem {
@@ -17,7 +17,7 @@ export interface IWidgetArticleData {
id?: string;
title?: string;
subTitle?: string;
- summary?: string;
html?: string[];
path?: ITocPathNode[];