feat: add getConvertedExtraKey / getOriginalExtraKey to utils

This commit is contained in:
LeoYuan 袁力皓 2022-03-21 16:45:33 +08:00
parent c63b6e1bfa
commit 8e7bb9d4b8

View File

@ -1,11 +1,14 @@
import { isFormEvent, compatibleLegaoSchema, getNodeSchemaById } from '@alilc/lowcode-utils';
import { isNodeSchema } from '@alilc/lowcode-types';
import { getConvertedExtraKey, getOriginalExtraKey } from '@alilc/lowcode-designer';
const utils = {
isNodeSchema,
isFormEvent,
compatibleLegaoSchema,
getNodeSchemaById,
getConvertedExtraKey,
getOriginalExtraKey,
};
export default utils;