mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-05 09:47:20 +00:00
15 lines
475 B
TypeScript
15 lines
475 B
TypeScript
import { isFormEvent, compatibleLegaoSchema, getNodeSchemaById, transactionManager } 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,
|
|
startTransaction: transactionManager.startTransaction,
|
|
};
|
|
|
|
export default utils; |