Files
leaudit-platform-frontend/app/api/dify-dataset/index.ts
T

17 lines
399 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.
/**
* Dify Dataset API 模块
*
* 推荐直接从子包导入:
* - 类型:import type { ... } from '~/api/dify-dataset/type'
* - APIimport { ... } from '~/api/dify-dataset/api'
* - 服务端:import { ... } from '~/api/dify-dataset/client.server'
*
* @module api/dify-dataset
*/
// 类型子包重新导出
export * from './type';
// API 子包重新导出
export * from './api';