为了应付web-server的tsc的修改

This commit is contained in:
luying
2021-12-07 11:16:37 +08:00
parent 6d85b41c40
commit a754f255ff
3 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -228,7 +228,7 @@ export class RoleNameCallBackParam {
time: number; // 时间戳
sign: string;
constructor(param: RoleNameCallBackParam) {
constructor(param: any) {
this.username = param.username;
this.game_key = param.game_key;
this.sid = param.sid;
@@ -256,7 +256,7 @@ export class GuildNameCallBackParam {
time: number; // 时间戳
sign: string;
constructor(param: GuildNameCallBackParam) {
constructor(param: any) {
this.game_key = param.game_key;
this.sid = param.sid;
this.type = param.type;
@@ -282,7 +282,7 @@ export class GetGuildInfoByUserParam {
sid: number; // 区服id
sign: string;
constructor(param: GetGuildInfoByUserParam) {
constructor(param: any) {
this.game_key = param.game_key;
this.uid = param.uid;
this.time = param.time;