/** * 文章内容类型 */ export enum PostBodyType { HTML = 'html', MD = 'markdown', } /** * 文章排序类型 */ export enum PostOrderType { CREATED = 'createdAt', UPDATED = 'updatedAt', PUBLISHED = 'publishedAt', COMMENTCOUNT = 'commentCount', CUSTOM = 'custom', } /** * all - 选择所有 only - 仅选择回收站 none - 不选择回收站 */ export enum SelectTrashMode { ALL = 'all', ONLY = 'only', NONE = 'none', }