feat: 🎸 urlParams 类型的数据源不需要 options, 所以 options 改成可选为好

This commit is contained in:
牧毅 2020-08-17 10:06:37 +08:00
parent 487f54d2d4
commit 8114c6f050

View File

@ -10,7 +10,7 @@ export interface DataSourceConfig {
type: string;
requestHandler?: JSFunction;
dataHandler?: JSFunction;
options: {
options?: {
uri: string | JSExpression;
params?: JSONObject | JSExpression;
method?: string | JSExpression;