wechat-article / types /article.d.ts
asemxin2000's picture
Deploy wechat-article-exporter to Space
6e41657 verified
Raw
History Blame Contribute Delete
364 Bytes
import type { AppMsgExWithFakeID } from '~/types/types';
import type { ArticleMetadata } from '~/utils/download/types';
export interface Article extends AppMsgExWithFakeID, Partial<ArticleMetadata> {
/**
* 文章内容是否已下载
*/
contentDownload: boolean;
/**
* 留言内容是否已下载
*/
commentDownload: boolean;
}