update
This commit is contained in:
@ -10,6 +10,9 @@ export interface Article {
|
||||
|
||||
export interface ArticleListParams {
|
||||
cid?: string;
|
||||
pageSize?: number;
|
||||
pageNo?: number;
|
||||
sort?: string;
|
||||
}
|
||||
|
||||
export interface ArticleDetail {
|
||||
@ -27,11 +30,16 @@ export interface ArticleDetail {
|
||||
isCollect: number;
|
||||
createTime: string;
|
||||
updateTime: string;
|
||||
// prev: Prev
|
||||
// next: Next
|
||||
prev?: Prev;
|
||||
next?: Prev;
|
||||
// news: News[]
|
||||
}
|
||||
|
||||
export interface Prev {
|
||||
id: string;
|
||||
title: string;
|
||||
}
|
||||
|
||||
export interface ArticleDetailParams {
|
||||
id: string;
|
||||
}
|
||||
|
Reference in New Issue
Block a user