add content

This commit is contained in:
2025-05-19 12:39:06 +08:00
parent 34c4ac8f86
commit 6386c3f1b3
2 changed files with 49 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export enum PostBodyType {
HTML = 'html',
MD = 'markdown',
}
export enum PostOrder {
CREATED = 'createdAt',
UPDATED = 'updatedAt',
PUBLISHED = 'publishedAt',
CUSTOM = 'custom',
}