@byted-apaas/server-sdk-node 1.1.18-beta.21 → 1.1.18-beta.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/global/global.d.ts +5 -0
- package/package.json +1 -1
package/global/global.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import { Flow } from './application/flow/flow';
|
|
|
6
6
|
import { _Resources } from '../context/resources/impl/resources';
|
|
7
7
|
import { Message } from '../context/msg/msg';
|
|
8
8
|
import { _IIntegration } from '../context/integration/IIntegration';
|
|
9
|
+
import { TaskCenter } from "../context/taskCenter/taskCenter";
|
|
9
10
|
declare global {
|
|
10
11
|
export namespace application {
|
|
11
12
|
/**
|
|
@@ -24,6 +25,10 @@ declare global {
|
|
|
24
25
|
* 指令操作符
|
|
25
26
|
*/
|
|
26
27
|
let operator: IOperator;
|
|
28
|
+
/**
|
|
29
|
+
* 消息中心
|
|
30
|
+
*/
|
|
31
|
+
let taskCenter: TaskCenter;
|
|
27
32
|
/**
|
|
28
33
|
* 常量
|
|
29
34
|
*/
|