@shimotsuki/core 1.0.27 → 1.0.28
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/dist/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -856,7 +856,10 @@ declare enum GlobalEventConstant {
|
|
|
856
856
|
}
|
|
857
857
|
|
|
858
858
|
type GameNotifyType = (route: string, reqReflect: ReflectMessage, options?: {
|
|
859
|
-
audOptions?:
|
|
859
|
+
audOptions?: {
|
|
860
|
+
forwardReq: false;
|
|
861
|
+
forwardResp: false;
|
|
862
|
+
};
|
|
860
863
|
show_log?: boolean;
|
|
861
864
|
}) => Promise<void>;
|
|
862
865
|
/**
|