export interface IDataSource { /** * 必填, 数据源标识 */ name: string; /** * 选填, 数据源别名 */ label?: string; /** * 选填, 数据源描述 */ description?: string; /** * 选填, 数据源类型 */ type?: string; /** * 选填, 数据源配置 */ config?: any; /** * 选填, 数据源操作方法 */ methods?: IDataMethod[]; } export interface IDataMethod { /** * 必填, 数据源方法名 */ name: string; /** * 选填, 数据源方法别名 */ label?: string; /** * 选填, 数据源方法的描述 */ description?: string; /** * 方法是否禁用, 留空则默认启用 * 为true则方法定义后不实际使用 */ disabled?: boolean; /** * 选填, 数据源方法的实现 */ calleeBody?: any; } //# sourceMappingURL=datasource.d.ts.map