monorepo/apps/api/src/modules/content/constants.ts

27 lines
472 B
TypeScript
Raw Normal View History

2024-07-18 14:15:41 +08:00
/**
*
*/
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',
}