forked from alibaba/lowcode-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutils.ts
More file actions
14 lines (12 loc) · 398 Bytes
/
utils.ts
File metadata and controls
14 lines (12 loc) · 398 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
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;