mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-02-28 04:40:32 +00:00
10 lines
315 B
TypeScript
10 lines
315 B
TypeScript
import { registerMetadataTransducer } from '@ali/lowcode-designer';
|
|
import parseProps from './parse-props';
|
|
import addonCombine from './addon-combine';
|
|
|
|
// parseProps
|
|
registerMetadataTransducer(parseProps, 10, 'parse-props');
|
|
|
|
// addon/platform custom
|
|
registerMetadataTransducer(addonCombine, 11, 'combine-props');
|