AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 AiToEarn
rednote.schema.ts
根目录
/
project
/
aitoearn-backend
/
apps
/
aitoearn-server
/
src
/
core
/
channels
/
platforms
/
rednote
/
rednote.schema.ts
1
import { z } from 'zod'
2
3
export const RedNoteOptionSchema = z.object({
4
workLink: z.string().trim().min(1).describe('已完成的小红书作品链接'),
5
})
6
7
export type RedNoteOption = z.infer<typeof RedNoteOptionSchema>
8
8 lines
TYPESCRIPT