mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-13 09:41:57 +00:00
fix: 🐛 根据低代码规范,数据源的配置中isInit和 type 都是有默认值的,所以应该是可选的
This commit is contained in:
parent
fea0946150
commit
4baf0b4e00
@ -6,8 +6,8 @@ import { CompositeValue, JSExpression, JSFunction, JSONObject } from './value-ty
|
||||
*/
|
||||
export interface DataSourceConfig {
|
||||
id: string;
|
||||
isInit: boolean | JSExpression;
|
||||
type: string;
|
||||
isInit?: boolean | JSExpression;
|
||||
type?: string;
|
||||
requestHandler?: JSFunction;
|
||||
dataHandler?: JSFunction;
|
||||
options?: {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user