Some checks reported errors
continuous-integration/drone/push Build was killed
- 搭建 api、auth、utils 等逻辑模块 - 通过 tsc、eslint、vitest 测试验证 BREAKING CHANGE: 新镜像分支
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
// AI模型评论排序枚举
|
|
export enum CommentSortType {
|
|
LATEST = 'latest', // 最新
|
|
HOTTEST = 'hottest', // 最热
|
|
HIGHEST_RATING = 'highest_rating' // 评分最高
|
|
}
|