Files
esengine/packages/tools/build-config/templates/plugin/src/index.ts.template
T

15 lines
335 B
Plaintext
Raw Normal View History

2025-12-01 22:28:51 +08:00
/**
* @esengine/{{name}}
*
* {{description}}
*
* 主入口 - 导出所有内容(包括编辑器模块)
* Main entry - exports everything (including editor modules)
*/
// Runtime exports (always available)
export * from './runtime';
// Editor exports (only in editor environment)
export { {{name}}Plugin } from './editor';