wechat-article / types /article.d.ts
Antigravity
Initialize wechat-article without git history and binary assets
70e483f
Raw
History Blame Contribute Delete
350 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;
}