Spaces:
Sleeping
Sleeping
| import type { AppMsgExWithFakeID } from '~/types/types'; | |
| import type { ArticleMetadata } from '~/utils/download/types'; | |
| export interface Article extends AppMsgExWithFakeID, Partial<ArticleMetadata> { | |
| /** | |
| * 文章内容是否已下载 | |
| */ | |
| contentDownload: boolean; | |
| /** | |
| * 留言内容是否已下载 | |
| */ | |
| commentDownload: boolean; | |
| } | |