larksr_websdk 3.2.6 → 3.2.10

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.
Files changed (63) hide show
  1. package/README.md +35 -24
  2. package/dist/doc/index.md +43 -3
  3. package/dist/larksr-web-sdk.min.js +3 -3
  4. package/dist/types/api.d.ts +27 -0
  5. package/dist/types/appli_params.d.ts +7 -0
  6. package/dist/types/index.d.ts +2 -1
  7. package/dist/types/larksr.d.ts +86 -9
  8. package/dist/types/screen_state.d.ts +6 -1
  9. package/package.json +9 -6
  10. package/types/api.d.ts +114 -0
  11. package/types/appli_params.d.ts +267 -0
  12. package/{dist/types → types}/common/cmd.d.ts +0 -0
  13. package/{dist/types → types}/common/constant.d.ts +0 -0
  14. package/{dist/types → types}/common/interface.d.ts +0 -0
  15. package/types/config.d.ts +59 -0
  16. package/{dist/types → types}/event/bus.d.ts +0 -0
  17. package/{dist/types → types}/event/event_base.d.ts +0 -0
  18. package/{dist/types → types}/event/events.d.ts +0 -0
  19. package/{dist/types → types}/event/iframe_poster.d.ts +0 -0
  20. package/{dist/types → types}/event/message.d.ts +0 -0
  21. package/types/index.d.ts +25 -0
  22. package/{dist/types → types}/lark/Worker.d.ts +0 -0
  23. package/{dist/types → types}/lark/application.d.ts +18 -11
  24. package/{dist/types → types}/lark/custom.d.ts +0 -0
  25. package/{dist/types → types}/lark/lark_event_type.d.ts +0 -0
  26. package/{dist/types → types}/lark/message.d.ts +0 -0
  27. package/{dist/types → types}/lark/peer_connection.d.ts +20 -17
  28. package/{dist/types → types}/lark/sdp_util.d.ts +0 -0
  29. package/{dist/types → types}/lark/test_pixel_streaming.d.ts +0 -0
  30. package/{dist/types → types}/lark/websocket_channel.d.ts +0 -0
  31. package/{dist/types → types}/lark/websocket_proxy.d.ts +0 -0
  32. package/types/larksr.d.ts +562 -0
  33. package/{dist/types → types}/localization/base.d.ts +0 -0
  34. package/{dist/types → types}/localization/gesture_ins.d.ts +0 -0
  35. package/{dist/types → types}/localization/language.d.ts +0 -0
  36. package/{dist/types → types}/localization/loader.d.ts +0 -0
  37. package/{dist/types → types}/localization/message.d.ts +0 -0
  38. package/{dist/types → types}/localization/ui.d.ts +0 -0
  39. package/{dist/types → types}/operation/gamepad_handler.d.ts +0 -0
  40. package/{dist/types → types}/operation/gesture.d.ts +0 -0
  41. package/{dist/types → types}/operation/gesture_handler.d.ts +0 -0
  42. package/{dist/types → types}/operation/handler_base.d.ts +0 -0
  43. package/{dist/types → types}/operation/keyboard_handler.d.ts +0 -0
  44. package/{dist/types → types}/operation/keymap.d.ts +0 -0
  45. package/{dist/types → types}/operation/letter_keymap.d.ts +0 -0
  46. package/{dist/types → types}/operation/mouse_handler.d.ts +0 -0
  47. package/{dist/types → types}/operation/num_keymap.d.ts +0 -0
  48. package/{dist/types → types}/operation/operation.d.ts +8 -1
  49. package/{dist/types → types}/operation/pixel_streaming_input.d.ts +0 -0
  50. package/{dist/types → types}/operation/touch_handler.d.ts +0 -0
  51. package/{dist/types → types}/operation/utils.d.ts +0 -0
  52. package/{dist/types → types}/protobuf/cloudlark.d.ts +6466 -5944
  53. package/{dist/types → types}/protobuf/message.d.ts +0 -0
  54. package/types/screen_state.d.ts +113 -0
  55. package/types/sdk_auth.d.ts +11 -0
  56. package/{dist/types → types}/utils/browser_type.d.ts +0 -0
  57. package/{dist/types → types}/utils/capabilities.d.ts +0 -0
  58. package/{dist/types → types}/utils/full_screen.d.ts +0 -0
  59. package/{dist/types → types}/utils/lock_pointer.d.ts +0 -0
  60. package/{dist/types → types}/utils/log.d.ts +1 -1
  61. package/{dist/types → types}/utils/scale_mode.d.ts +0 -0
  62. package/{dist/types → types}/utils/unit.d.ts +1 -0
  63. package/dist/dist.zip +0 -0
@@ -65,19 +65,46 @@ export interface StartAppInfo {
65
65
  playerMode?: number;
66
66
  userType?: number;
67
67
  roomCode?: string;
68
+ nickName?: string;
68
69
  nickname?: string;
70
+ appKey?: string;
71
+ groupId?: string;
69
72
  }
70
73
  export default class API {
71
74
  static CheckUTLockInfoPath: string;
72
75
  static GetTaskPATH: string;
73
76
  static ClientLogErrorPath: string;
74
77
  static GetStartInfoPath: string;
78
+ private static PocHostApplGetUrl;
79
+ static HostAppliGetUrl(params: {
80
+ appliId: string;
81
+ playerMode?: number;
82
+ userType?: number;
83
+ roomCode?: string;
84
+ taskId?: string;
85
+ }): Promise<{
86
+ host: string;
87
+ origin: string;
88
+ params: {
89
+ appliId: string;
90
+ appKey: string;
91
+ timestamp: string;
92
+ signature: string;
93
+ };
94
+ }>;
75
95
  static GetStartInfo(serverAddress: string, params: {
76
96
  appliId: string;
77
97
  playerMode?: number;
78
98
  userType?: number;
79
99
  roomCode?: string;
80
100
  taskId?: string;
101
+ clientMac?: string;
102
+ groupId?: string;
103
+ regionId?: string;
104
+ targetServerIp?: string;
105
+ appKey?: string;
106
+ timestamp?: string;
107
+ signature?: string;
81
108
  }): Promise<StartAppInfo>;
82
109
  static CheckUTLockInfo(config: ILarkSRConfig): Promise<UTLockInfo>;
83
110
  static GetTask(config: ILarkSRConfig, taskid: string): Promise<GetTaskResult>;
@@ -1,5 +1,6 @@
1
1
  import ScaleMode from './utils/scale_mode';
2
2
  import { StartAppInfo } from './api';
3
+ import { ILarkSRConfig } from './larksr';
3
4
  export interface IAppliParams {
4
5
  /**
5
6
  * appserver 的ip地址
@@ -187,6 +188,8 @@ export interface IAppliParams {
187
188
  enableRttIcon: boolean;
188
189
  enableSoundRequire: boolean;
189
190
  toastLevel: number;
191
+ appKey: string;
192
+ groupId: string;
190
193
  }
191
194
  export declare enum AppliType {
192
195
  DESKTOP = 1,
@@ -244,6 +247,10 @@ export declare class AppliParams implements IAppliParams {
244
247
  enableRttIcon: boolean;
245
248
  enableSoundRequire: boolean;
246
249
  toastLevel: number;
250
+ appKey: string;
251
+ groupId: string;
252
+ static copyAndCreate(params?: IAppliParams): AppliParams;
253
+ static setUpWithSDKConfig(params: IAppliParams, config: ILarkSRConfig): AppliParams;
247
254
  }
248
255
  export declare function CreateAppliParams(): IAppliParams;
249
256
  export declare class AppliParamsUtils {
@@ -1,7 +1,8 @@
1
1
  import 'core-js/stable/symbol';
2
- import { LarkSR, CreateLarkSRClientFromeAPI, CreateLarkSRClientFromeUrl, LarkEventType, LarkSRClientEvent, AppliParams, LoadAppliParamsFromUrl, AppliParamsUtils, LoadAppliParamsStartAppInfo, EventBase, API, Operation, Capabilities, ScaleMode, CloudLark, FullScreen, LockPointer, ILarkSRConfig, PlayerModeType, UserType, LarkSREvent } from "./larksr";
2
+ import { LarkSR, CreateLarkSRClientFromePXYHost, CreateLarkSRClientFromeAPI, CreateLarkSRClientFromeUrl, LarkEventType, LarkSRClientEvent, AppliParams, LoadAppliParamsFromUrl, AppliParamsUtils, LoadAppliParamsStartAppInfo, EventBase, API, Operation, Capabilities, ScaleMode, CloudLark, FullScreen, LockPointer, ILarkSRConfig, PlayerModeType, UserType, LarkSREvent } from "./larksr";
3
3
  declare const _default: {
4
4
  LarkSR: typeof LarkSR;
5
+ CreateLarkSRClientFromePXYHost: typeof CreateLarkSRClientFromePXYHost;
5
6
  CreateLarkSRClientFromeAPI: typeof CreateLarkSRClientFromeAPI;
6
7
  CreateLarkSRClientFromeUrl: typeof CreateLarkSRClientFromeUrl;
7
8
  API: typeof API;
@@ -15,7 +15,7 @@ import FullScreen from './utils/full_screen';
15
15
  import LockPointer from './utils/lock_pointer';
16
16
  import ScaleMode from './utils/scale_mode';
17
17
  import Capabilities from './utils/capabilities';
18
- declare const enum PlayerModeType {
18
+ declare enum PlayerModeType {
19
19
  /**
20
20
  * 普通模式
21
21
  */
@@ -32,7 +32,7 @@ declare const enum PlayerModeType {
32
32
  /**
33
33
  * 当前用户的身份
34
34
  */
35
- declare const enum UserType {
35
+ declare enum UserType {
36
36
  /**
37
37
  * 观看者
38
38
  */
@@ -69,7 +69,11 @@ declare enum LarkSRClientEvent {
69
69
  /**
70
70
  * 获取到远端视频流 .
71
71
  */
72
- GOT_REMOTE_STREAM = "gotremotesteam",
72
+ GOT_REMOTE_STREAM = "gotremotestream",
73
+ /**
74
+ * 获取到远端音频流 .
75
+ */
76
+ GOT_REMOTE_AUDIO_STREAM = "gotremoteaudiostream",
73
77
  /**
74
78
  * 视频加载成功,等待播放 .
75
79
  */
@@ -173,10 +177,12 @@ interface ILarkSRConfig {
173
177
  */
174
178
  rootElement: HTMLElement;
175
179
  /**
176
- * 必选项 服务器地址. LarkServer 前台访问的地址
180
+ * 可选项 服务器地址. LarkServer 前台访问的地址
177
181
  * 如: http://192.168.0.55:8181/
182
+ * 当使用托管服务时服务器地址自动分配,可留空。
183
+ * 使用托管服务时@see CreateLarkSRClientFromePXYHost @see larksr.connectWithPxyHost
178
184
  */
179
- serverAddress: string;
185
+ serverAddress?: string;
180
186
  /**
181
187
  * 可选项。 sdk 授权码。如果不在此处填,则必须在后续的实例里调用 initSDKAuthCode 初始化。
182
188
  */
@@ -266,6 +272,20 @@ interface ILarkSRConfig {
266
272
  */
267
273
  initCursorMode?: boolean;
268
274
  }
275
+ /**
276
+ * 通过平行云托管平台创建客户端并启动应用
277
+ * @param config 传入 config @see ILarkSRConfig
278
+ * @param params 进入应用接口参数。appliId 为必填项
279
+ * @returns Promise 创建 larksr client 是否成功
280
+ */
281
+ export declare function CreateLarkSRClientFromePXYHost(config: ILarkSRConfig, params: {
282
+ appliId: string;
283
+ playerMode?: number;
284
+ userType?: number;
285
+ roomCode?: string;
286
+ taskId?: string;
287
+ nickname?: string;
288
+ }): Promise<LarkSR>;
269
289
  /**
270
290
  * 通过调用后台接口获取云端应用参数
271
291
  * @param config 传入 config @see ILarkSRConfig
@@ -278,6 +298,13 @@ export declare function CreateLarkSRClientFromeAPI(config: ILarkSRConfig, params
278
298
  userType?: number;
279
299
  roomCode?: string;
280
300
  taskId?: string;
301
+ clientMac?: string;
302
+ groupId?: string;
303
+ regionId?: string;
304
+ targetServerIp?: string;
305
+ appKey?: string;
306
+ timestamp?: string;
307
+ signature?: string;
281
308
  }): Promise<LarkSR>;
282
309
  /**
283
310
  * 通过从url参数中获取云端应用相关参数
@@ -289,7 +316,7 @@ declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
289
316
  /**
290
317
  * 应用参数,构建时传入
291
318
  */
292
- get params(): IAppliParams;
319
+ get params(): AppliParams;
293
320
  private _params;
294
321
  /**
295
322
  * 当前的玩家模式,
@@ -351,6 +378,14 @@ declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
351
378
  * 视频显示组件
352
379
  */
353
380
  get videoComponent(): any;
381
+ /**
382
+ * 音频元素
383
+ */
384
+ get audioElement(): HTMLAudioElement;
385
+ /**
386
+ * 是否有单独的音频流
387
+ */
388
+ get isSeprateAudioTrack(): any;
354
389
  /**
355
390
  * 视频显示组件的父容器
356
391
  */
@@ -362,7 +397,6 @@ declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
362
397
  get rootElement(): HTMLElement;
363
398
  private _rootElement;
364
399
  get serverAddress(): string;
365
- private _serverAddress;
366
400
  get serverIp(): string;
367
401
  get config(): ILarkSRConfig;
368
402
  private _config;
@@ -383,17 +417,53 @@ declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
383
417
  * 注意,如果手动创建该类,要清楚参数的意义,一般只有调试等特殊情况才手动创建该类
384
418
  * @see CreateLarkSRClientFromeAPI, CreateLarkSRClientFromeUrl
385
419
  * @param config 本地配置,如果有 IAppliParams 相同的配置项,优先级最高
386
- * @param params 云端应用参数等,通过后台接口或者url参数获取。
420
+ * @param params [可选参数] 云端应用参数等,通过后台接口或者url参数获取。
387
421
  */
388
- constructor(config: ILarkSRConfig, params: IAppliParams);
422
+ constructor(config: ILarkSRConfig, params?: IAppliParams);
389
423
  /**
390
424
  *
391
425
  * @param id sdk id 初始化sdkid
392
426
  * @returns
393
427
  */
394
428
  initSDKAuthCode(id: string): Promise<void>;
429
+ connectWithPxyHost(params: {
430
+ appliId: string;
431
+ playerMode?: number;
432
+ userType?: number;
433
+ roomCode?: string;
434
+ taskId?: string;
435
+ }): Promise<void>;
436
+ /**
437
+ * 连接云端渲染资源
438
+ * @params appID 云端资源的 ID
439
+ * @returns Promise 调用接口并校验授权通过返回成功并自动开始连接
440
+ */
441
+ connect(params: {
442
+ appliId: string;
443
+ playerMode?: number;
444
+ userType?: number;
445
+ roomCode?: string;
446
+ taskId?: string;
447
+ clientMac?: string;
448
+ groupId?: string;
449
+ regionId?: string;
450
+ targetServerIp?: string;
451
+ appKey?: string;
452
+ timestamp?: string;
453
+ signature?: string;
454
+ }): Promise<void>;
455
+ /**
456
+ * 用户手动填昵称,需要在 start 或 connect 设置才能生效。
457
+ */
458
+ setNickname(nickname: string): void;
459
+ /**
460
+ * 手动重设进入应用参数
461
+ * @param params
462
+ */
463
+ setAppliParams(params: IAppliParams): void;
395
464
  /**
396
465
  * 开始云渲染流程
466
+ * 启动时应用参数不能为空,包括 taskID,appServer,appPort
397
467
  * @returns 是否成功。主要校验授权码是否成功
398
468
  */
399
469
  start(): Promise<void>;
@@ -405,6 +475,10 @@ declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
405
475
  * 重新启动云端应用
406
476
  */
407
477
  restartApp(): void;
478
+ /**
479
+ * 主动关闭连接
480
+ */
481
+ close(): void;
408
482
  /**
409
483
  * 切换当前操作者
410
484
  * @param uid 用户id
@@ -441,6 +515,7 @@ declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
441
515
  * 可以不使用该方法退出页面
442
516
  */
443
517
  quit(): void;
518
+ resetAppMouseLockState(): void;
444
519
  /**
445
520
  * 操作相关事件
446
521
  * 所有事件坐标相对于云端应用,不相对于网页
@@ -466,10 +541,12 @@ declare class LarkSR extends EventBase<LarkSRClientEvent, LarkSREvent> {
466
541
  $emitError(message?: string, code?: number): void;
467
542
  $emitInfo(message?: string, code?: number): void;
468
543
  private createEvent;
544
+ private setupListener;
469
545
  private taskProcess;
470
546
  private startProcess;
471
547
  private onAppStateChange;
472
548
  private onGotRemoteStream;
549
+ private onGotRemoteAudioStream;
473
550
  private onCursorStyle;
474
551
  private onAppResize;
475
552
  private onAppMouseMode;
@@ -3,6 +3,7 @@ import { IAppliParams } from "./appli_params";
3
3
  import { CloudLark } from "./protobuf/cloudlark";
4
4
  import ScaleMode from "./utils/scale_mode";
5
5
  import { LocalEvent, EventBase } from './event/event_base';
6
+ import { LarkSR } from "./larksr";
6
7
  export interface ContainerSize {
7
8
  marginTop: number;
8
9
  marginLeft: number;
@@ -83,7 +84,9 @@ export default class ScreenState extends EventBase<SCREEN_EVENT_TYPE, ScreenEven
83
84
  get isLockMouse(): boolean;
84
85
  private _isLockMouse;
85
86
  get cursorStyle(): SyncCursorStyle;
87
+ set cursorStyle(style: SyncCursorStyle);
86
88
  private _cursorStyle;
89
+ private get cursorCSSStyle();
87
90
  get appMouseMode(): CloudLark.IAppMouseMode;
88
91
  set appMouseMode(mode: CloudLark.IAppMouseMode);
89
92
  private _appMouseMode;
@@ -103,6 +106,8 @@ export default class ScreenState extends EventBase<SCREEN_EVENT_TYPE, ScreenEven
103
106
  private mobileForceLandScape;
104
107
  private bgColor;
105
108
  private handelRootElementSize;
106
- constructor(rootElement: HTMLElement, params: IAppliParams, handelRootElementSize?: boolean);
109
+ private larksr;
110
+ constructor(rootElement: HTMLElement, params: IAppliParams, larksr: LarkSR, handelRootElementSize?: boolean);
111
+ reset(params: IAppliParams): void;
107
112
  resize(): void;
108
113
  }
package/package.json CHANGED
@@ -1,18 +1,21 @@
1
1
  {
2
2
  "name": "larksr_websdk",
3
- "version": "3.2.6",
4
- "description": "larksr websdk. http://www.pingxingyun.com",
3
+ "version": "3.2.10",
4
+ "description": "Larksr websdk. Easy to build a cloud render client for larksr system or ue4 pixelstreaming.docs: https://pingxingyun.github.io/webclient_sdk/",
5
5
  "keywords": [
6
6
  "pingxingyun",
7
7
  "larksr",
8
8
  "cloudrendeing",
9
9
  "webrtc",
10
- "cloudxr"
10
+ "cloudxr",
11
+ "pixelstreaming"
11
12
  ],
12
13
  "main": "./dist/larksr-web-sdk.min.js",
13
- "types": "./dist/types/index.d.ts",
14
+ "types": "./types/index.d.ts",
14
15
  "files": [
15
- "dist"
16
+ "dist",
17
+ "types",
18
+ "doc,"
16
19
  ],
17
20
  "scripts": {
18
21
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -20,7 +23,7 @@
20
23
  "build": "webpack --config webpack.config.js",
21
24
  "build:typings": "tsc --build tsconfig.type.json",
22
25
  "copy-dts": "copyfiles -u 1 \"src/**/*.d.ts\" dist/types/",
23
- "dist": "webpack --config webpack.config.js && copyfiles -u 1 \"src/**/*.d.ts\" dist/types/ && copyfiles -u 1 \"doc/*\" dist/doc/"
26
+ "dist": "webpack --config webpack.config.js && copyfiles -u 1 \"src/**/*.d.ts\" ./types/ && copyfiles -u 1 \"doc/*\" dist/doc/ && copyfiles -u 1 \"types/*\" ./dist/types/"
24
27
  },
25
28
  "author": "fcx@pingxingyun.com",
26
29
  "license": "ISC",
package/types/api.d.ts ADDED
@@ -0,0 +1,114 @@
1
+ import { ILarkSRConfig } from './larksr';
2
+ import { AppliParams } from './appli_params';
3
+ export interface UTLockInfo {
4
+ checkUtLockMessage: string;
5
+ checkUtLockResult: boolean;
6
+ remainMinutes: number;
7
+ }
8
+ export interface GetTaskResult {
9
+ adminViewer: number;
10
+ appKey: string;
11
+ appliId: string;
12
+ appliType: number;
13
+ city: string;
14
+ clientIp: string;
15
+ country: string;
16
+ createDate: string;
17
+ dcs: number;
18
+ limitMaxFps: number;
19
+ offScreen: number;
20
+ playerListToggle: number;
21
+ playerMode: number;
22
+ province: string;
23
+ publicIp: string;
24
+ reserveFlag: number;
25
+ serverId: string;
26
+ serverIp: string;
27
+ shareUrl: string;
28
+ startAt: string;
29
+ startParam: string;
30
+ startProcType: number;
31
+ status: number;
32
+ taskId: string;
33
+ updateDate: string;
34
+ useGamepad: number;
35
+ wm: number;
36
+ }
37
+ export interface StartAppInfo {
38
+ appliId: string;
39
+ appliType: number;
40
+ appliName: string;
41
+ taskId: string;
42
+ renderServerIp: string;
43
+ wsProxy: string;
44
+ preferPublicIp: string;
45
+ renderServerPort: number;
46
+ initCursorMode: number;
47
+ rttLimit: string;
48
+ touchOperateMode: string;
49
+ fullScreenMode: number;
50
+ mobileForceLandscape: number;
51
+ mobileFullScreenMode: number;
52
+ language: string;
53
+ noOperationTimeout: string;
54
+ serverId: string;
55
+ network: string;
56
+ playerListToggle: number;
57
+ bgColor: string;
58
+ logLevel: string;
59
+ mobileVirtualJoystick: number;
60
+ initWinSize: number;
61
+ taskStatus: number;
62
+ mouseZoomDirection: number;
63
+ useGamepad: number;
64
+ rttLimitInterval: string;
65
+ playerMode?: number;
66
+ userType?: number;
67
+ roomCode?: string;
68
+ nickName?: string;
69
+ nickname?: string;
70
+ appKey?: string;
71
+ groupId?: string;
72
+ }
73
+ export default class API {
74
+ static CheckUTLockInfoPath: string;
75
+ static GetTaskPATH: string;
76
+ static ClientLogErrorPath: string;
77
+ static GetStartInfoPath: string;
78
+ private static PocHostApplGetUrl;
79
+ static HostAppliGetUrl(params: {
80
+ appliId: string;
81
+ playerMode?: number;
82
+ userType?: number;
83
+ roomCode?: string;
84
+ taskId?: string;
85
+ }): Promise<{
86
+ host: string;
87
+ origin: string;
88
+ params: {
89
+ appliId: string;
90
+ appKey: string;
91
+ timestamp: string;
92
+ signature: string;
93
+ };
94
+ }>;
95
+ static GetStartInfo(serverAddress: string, params: {
96
+ appliId: string;
97
+ playerMode?: number;
98
+ userType?: number;
99
+ roomCode?: string;
100
+ taskId?: string;
101
+ clientMac?: string;
102
+ groupId?: string;
103
+ regionId?: string;
104
+ targetServerIp?: string;
105
+ appKey?: string;
106
+ timestamp?: string;
107
+ signature?: string;
108
+ }): Promise<StartAppInfo>;
109
+ static CheckUTLockInfo(config: ILarkSRConfig): Promise<UTLockInfo>;
110
+ static GetTask(config: ILarkSRConfig, taskid: string): Promise<GetTaskResult>;
111
+ static LogError(errorCode: number, errorMsg: string, params: string, config: ILarkSRConfig): void;
112
+ static ClientInfo(config: ILarkSRConfig, params: AppliParams): void;
113
+ static joinParam(params: any): string;
114
+ }