返回 AiToEarn
tools.ts
1 // AI生成类型
2 export enum AiCreateType {
3 // 标题
4 TITLE = 1,
5 // 描述
6 DESC = 2,
7 }
8
8 lines TYPESCRIPT