mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-10 01:48:18 +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 {
|
export interface DataSourceConfig {
|
||||||
id: string;
|
id: string;
|
||||||
isInit: boolean | JSExpression;
|
isInit?: boolean | JSExpression;
|
||||||
type: string;
|
type?: string;
|
||||||
requestHandler?: JSFunction;
|
requestHandler?: JSFunction;
|
||||||
dataHandler?: JSFunction;
|
dataHandler?: JSFunction;
|
||||||
options?: {
|
options?: {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user