mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-16 15:01:15 +00:00
12 lines
280 B
TypeScript
12 lines
280 B
TypeScript
export async function init(
|
|
container?: HTMLElement,
|
|
options?: IPublicTypeEngineOptions,
|
|
pluginPreference?: PluginPreference,
|
|
) {
|
|
if (!container) {
|
|
container = document.createElement('div');
|
|
container.id = 'engine';
|
|
document.body.appendChild(container);
|
|
}
|
|
}
|