Spaces:
Sleeping
Sleeping
File size: 364 Bytes
6e41657 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | import type { AppMsgExWithFakeID } from '~/types/types';
import type { ArticleMetadata } from '~/utils/download/types';
export interface Article extends AppMsgExWithFakeID, Partial<ArticleMetadata> {
/**
* 文章内容是否已下载
*/
contentDownload: boolean;
/**
* 留言内容是否已下载
*/
commentDownload: boolean;
}
|