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