@shimotsuki/core 3.0.33 → 3.0.34
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 +1 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -643,8 +643,7 @@ declare class WrapperSocialGameClient extends SocialGameClient {
|
|
|
643
643
|
ignore: (route: string) => boolean;
|
|
644
644
|
constructor(name: string, opts: Partial<SocialGameClientOption>, eventResponsePairs: Partial<AllEventResponsePairs>, clientOption?: ExtendedClientOption);
|
|
645
645
|
destroy(): void;
|
|
646
|
-
GameRequest<
|
|
647
|
-
GameRequest<T extends string, U>(route: T, req: BinaryWriter, res: MessageFns<U>, options?: AudienceOptions): Promise<U>;
|
|
646
|
+
GameRequest<U>(route: string, req: BinaryWriter, res: MessageFns<U>, { forwardReq, forwardResp }?: AudienceOptions): Promise<U>;
|
|
648
647
|
subscribe<T>(route: string, respType: MessageFns<T>, fn?: (data: T) => void): this;
|
|
649
648
|
}
|
|
650
649
|
|