Merge branch feat/function-util into release/1.0.28

Title: feat: 🎸 utils 的定义中增加对于 function 类型的支持 

详见提案: <https://yuque.antfin-inc.com/ali-lowcode/hbd2px/piuzn1>

Link: https://code.aone.alibaba-inc.com/ali-lowcode/ali-lowcode-engine/codereview/4455443
This commit is contained in:
armslave.yy 2021-01-04 10:26:34 +08:00
commit c3bbb7354d

View File

@ -14,14 +14,4 @@ export type ExternalUtils = {
};
export type UtilItem = InternalUtils | ExternalUtils;
export type UtilsMap = Array<
| {
name: string;
type: 'npm';
content: NpmInfo;
}
| {
name: string;
type: '';
}
>;
export type UtilsMap = UtilItem[];