23 lines
740 B
TypeScript
23 lines
740 B
TypeScript
|
|
/**
|
||
|
|
* Blueprint 模块服务令牌
|
||
|
|
* Blueprint module service tokens
|
||
|
|
*
|
||
|
|
* 定义 blueprint 模块导出的服务令牌。
|
||
|
|
* Defines service tokens exported by blueprint module.
|
||
|
|
*
|
||
|
|
* 注意:当前 Blueprint 模块主要通过组件和系统工作,
|
||
|
|
* 暂时没有需要通过服务令牌暴露的全局服务。
|
||
|
|
* 未来可能添加 BlueprintDebuggerToken 等。
|
||
|
|
*
|
||
|
|
* Note: Blueprint module currently works mainly through components and systems,
|
||
|
|
* no global services need to be exposed via service tokens yet.
|
||
|
|
* May add BlueprintDebuggerToken etc. in the future.
|
||
|
|
*/
|
||
|
|
|
||
|
|
// 当前无服务令牌
|
||
|
|
// No service tokens currently
|
||
|
|
|
||
|
|
// 预留导出位置,便于将来扩展
|
||
|
|
// Reserved export location for future extension
|
||
|
|
export {};
|