Files
test1/components/html-editor/server/index.ts
2026-03-20 07:33:46 +00:00

9 lines
206 B
TypeScript

import { request } from '@/http/request';
export function saveMarkdown(content: {
task_id: string
path: string
content: string
}) {
return request.post('/v1/super_agent/chat/write_file', content)
}