2024-07-03 11:16:40 +08:00

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);
}
}