import { EDataSourceType, IDataSourceHandler } from '../../../types'; /** * 数据源处理器工厂 */ export declare class DataSourceHandlerFactory { /** * 创建数据源处理器 * @param type 数据源类型 * @returns 对应类型的数据源处理器 */ static createHandler(type: EDataSourceType): IDataSourceHandler; }