mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-14 13:03:07 +00:00
14 lines
398 B
TypeScript
14 lines
398 B
TypeScript
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; |