Files
knowai/types/model/enum.ts
2025-11-23 22:26:39 +08:00

8 lines
234 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

// AI模型评论排序枚举
// 和post的重复了而且字段还不一样
export enum CommentSortType {
LATEST = 'latest', // 最新
HOTTEST = 'hottest', // 最热
HIGHEST_RATING = 'highest_rating' // 评分最高
}