mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 11:20:11 +00:00
19 lines
779 B
TypeScript
19 lines
779 B
TypeScript
/* --------------- api -------------------- */
|
|
export * from './api/app';
|
|
export * from './api/component';
|
|
export { createCodeRuntime, createScope } from './code-runtime';
|
|
export { definePlugin } from './plugin';
|
|
export { createWidget } from './widget';
|
|
export { createContainer } from './container';
|
|
export { createHookStore, useEvent } from './utils/hook';
|
|
export * from './utils/type-guard';
|
|
export * from './utils/value';
|
|
export * from './widget';
|
|
|
|
/* --------------- types ---------------- */
|
|
export * from './types';
|
|
export type { CodeRuntime, CodeScope } from './code-runtime';
|
|
export type { Plugin, PluginSetupContext } from './plugin';
|
|
export type { PackageManager, PackageLoader } from './package';
|
|
export type { Container, CreateContainerOptions } from './container';
|