forked from changshazhou/MiniGameAllPlatformSDK-Source
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlayaAir.minigame.d.ts
484 lines (482 loc) · 17.9 KB
/
layaAir.minigame.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
declare module laya.wx.mini {
import Handler = laya.utils.Handler;
class MiniAdpter {
static EnvConfig: any;
/**全局window对象**/
static window: any;
static systemInfo: any;
static isZiYu: boolean;
static isPosMsgYu: boolean;
/**是否自动缓存下载的图片跟声音文件,默认为true**/
static autoCacheFile: boolean;
/**50M缓存容量满时每次清理容量值,默认每次清理5M**/
static minClearSize: number;
/**本地资源列表**/
static nativefiles: Array<any>;
/**本地分包资源表**/
static subNativeFiles: any;
/**本地分包文件目录数组**/
static subNativeheads: Array<any>;
/**本地分包文件目录映射表**/
static subMaps: Array<any>;
static AutoCacheDownFile: boolean;
static getJson(data: string): any;
/**激活微信小游戏适配器*/
static enable(): void;
/**
* 初始化回调
* @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false
* @param isSon 是否是子域,默认为false
*/
static init(isPosMsg?: boolean, isSon?: boolean): void;
/**
* 获取url对应的encoding值
* @param url 文件路径
* @param type 文件类型
* @return
*/
static getUrlEncode(url: string, type: string): string;
/**
* 下载文件
* @param fileUrl 文件地址(全路径)
* @param fileType 文件类型(image、text、json、xml、arraybuffer、sound、atlas、font)
* @param callBack 文件加载回调,回调内容[errorCode码(0成功,1失败,2加载进度)
* @param encoding 文件编码默认utf8,非图片文件加载需要设置相应的编码,二进制编码为空字符串
*/
static downLoadFile(fileUrl: string, fileType?: string, callBack?: Handler, encoding?: string): void;
/**
* 从本地删除文件
* @param fileUrl 文件地址(全路径)
* @param callBack 回调处理,在存储图片时用到
*/
static remove(fileUrl: string, callBack?: Handler): void;
/**
* 清空缓存空间文件内容
*/
static removeAll(): void;
/**
* 判断是否是4M包文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static hasNativeFile(fileUrl: string): boolean;
/**
* 判断缓存里是否存在文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static getFileInfo(fileUrl: string): any;
/**
* 获取缓存文件列表
* @return
*/
static getFileList(): any;
static exitMiniProgram(): void;
static pixelRatio(): number;
static createElement(type: string): any;
static createShaderCondition(conditionScript: string): Function;
/**
* 传递图集url地址到
* @param url 为绝对地址
*/
static sendAtlasToOpenDataContext(url: string): void;
/**
* 发送单张图片到开放数据域
* @param url
*/
static sendSinglePicToOpenDataContext(url: string): void;
/**
* 传递json配置数据到开放数据域
* @param url 为绝对地址
*/
static sendJsonDataToDataContext(url: string): void;
}
}
declare module laya.bd.mini {
import Handler = laya.utils.Handler;
class BMiniAdapter {
static EnvConfig: any;
/**全局window对象**/
static window: any;
static systemInfo: any;
static isZiYu: boolean;
static isPosMsgYu: boolean;
/**是否自动缓存下载的图片跟声音文件,默认为true**/
static autoCacheFile: boolean;
/**50M缓存容量满时每次清理容量值,默认每次清理5M**/
static minClearSize: number;
/**本地资源列表**/
static nativefiles: Array<any>;
/**本地分包资源表**/
static subNativeFiles: any;
/**本地分包文件目录数组**/
static subNativeheads: Array<any>;
/**本地分包文件目录映射表**/
static subMaps: Array<any>;
static AutoCacheDownFile: boolean;
static getJson(data: string): any;
/**激活微信小游戏适配器*/
static enable(): void;
/**
* 初始化回调
* @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false
* @param isSon 是否是子域,默认为false
*/
static init(isPosMsg?: boolean, isSon?: boolean): void;
/**
* 获取url对应的encoding值
* @param url 文件路径
* @param type 文件类型
* @return
*/
static getUrlEncode(url: string, type: string): string;
/**
* 下载文件
* @param fileUrl 文件地址(全路径)
* @param fileType 文件类型(image、text、json、xml、arraybuffer、sound、atlas、font)
* @param callBack 文件加载回调,回调内容[errorCode码(0成功,1失败,2加载进度)
* @param encoding 文件编码默认utf8,非图片文件加载需要设置相应的编码,二进制编码为空字符串
*/
static downLoadFile(fileUrl: string, fileType?: string, callBack?: Handler, encoding?: string): void;
/**
* 从本地删除文件
* @param fileUrl 文件地址(全路径)
* @param callBack 回调处理,在存储图片时用到
*/
static remove(fileUrl: string, callBack?: Handler): void;
/**
* 清空缓存空间文件内容
*/
static removeAll(): void;
/**
* 判断是否是4M包文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static hasNativeFile(fileUrl: string): boolean;
/**
* 判断缓存里是否存在文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static getFileInfo(fileUrl: string): any;
/**
* 获取缓存文件列表
* @return
*/
static getFileList(): any;
static exitMiniProgram(): void;
static pixelRatio(): number;
static createElement(type: string): any;
static createShaderCondition(conditionScript: string): Function;
/**
* 传递图集url地址到
* @param url 为绝对地址
*/
static sendAtlasToOpenDataContext(url: string): void;
/**
* 发送单张图片到开放数据域
* @param url
*/
static sendSinglePicToOpenDataContext(url: string): void;
/**
* 传递json配置数据到开放数据域
* @param url 为绝对地址
*/
static sendJsonDataToDataContext(url: string): void;
}
}
declare module laya.mi.mini {
import Handler = laya.utils.Handler;
class KGMiniAdapter {
static EnvConfig: any;
/**全局window对象**/
static window: any;
static systemInfo: any;
static isZiYu: boolean;
static isPosMsgYu: boolean;
/**是否自动缓存下载的图片跟声音文件,默认为true**/
static autoCacheFile: boolean;
/**50M缓存容量满时每次清理容量值,默认每次清理5M**/
static minClearSize: number;
/**本地资源列表**/
static nativefiles: Array<any>;
/**本地分包资源表**/
static subNativeFiles: any;
/**本地分包文件目录数组**/
static subNativeheads: Array<any>;
/**本地分包文件目录映射表**/
static subMaps: Array<any>;
static AutoCacheDownFile: boolean;
static getJson(data: string): any;
/**激活微信小游戏适配器*/
static enable(): void;
/**
* 初始化回调
* @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false
* @param isSon 是否是子域,默认为false
*/
static init(isPosMsg?: boolean, isSon?: boolean): void;
/**
* 获取url对应的encoding值
* @param url 文件路径
* @param type 文件类型
* @return
*/
static getUrlEncode(url: string, type: string): string;
/**
* 下载文件
* @param fileUrl 文件地址(全路径)
* @param fileType 文件类型(image、text、json、xml、arraybuffer、sound、atlas、font)
* @param callBack 文件加载回调,回调内容[errorCode码(0成功,1失败,2加载进度)
* @param encoding 文件编码默认utf8,非图片文件加载需要设置相应的编码,二进制编码为空字符串
*/
static downLoadFile(fileUrl: string, fileType?: string, callBack?: Handler, encoding?: string): void;
/**
* 从本地删除文件
* @param fileUrl 文件地址(全路径)
* @param callBack 回调处理,在存储图片时用到
*/
static remove(fileUrl: string, callBack?: Handler): void;
/**
* 清空缓存空间文件内容
*/
static removeAll(): void;
/**
* 判断是否是4M包文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static hasNativeFile(fileUrl: string): boolean;
/**
* 判断缓存里是否存在文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static getFileInfo(fileUrl: string): any;
/**
* 获取缓存文件列表
* @return
*/
static getFileList(): any;
static exitMiniProgram(): void;
static pixelRatio(): number;
static createElement(type: string): any;
static createShaderCondition(conditionScript: string): Function;
/**
* 传递图集url地址到
* @param url 为绝对地址
*/
static sendAtlasToOpenDataContext(url: string): void;
/**
* 发送单张图片到开放数据域
* @param url
*/
static sendSinglePicToOpenDataContext(url: string): void;
/**
* 传递json配置数据到开放数据域
* @param url 为绝对地址
*/
static sendJsonDataToDataContext(url: string): void;
}
}
declare module laya.qg.mini {
import Handler = laya.utils.Handler;
class QGMiniAdapter {
static EnvConfig: any;
/**全局window对象**/
static window: any;
static systemInfo: any;
static isZiYu: boolean;
static isPosMsgYu: boolean;
/**是否自动缓存下载的图片跟声音文件,默认为true**/
static autoCacheFile: boolean;
/**50M缓存容量满时每次清理容量值,默认每次清理5M**/
static minClearSize: number;
/**本地资源列表**/
static nativefiles: Array<any>;
/**本地分包资源表**/
static subNativeFiles: any;
/**本地分包文件目录数组**/
static subNativeheads: Array<any>;
/**本地分包文件目录映射表**/
static subMaps: Array<any>;
static AutoCacheDownFile: boolean;
static getJson(data: string): any;
/**激活微信小游戏适配器*/
static enable(): void;
/**
* 初始化回调
* @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false
* @param isSon 是否是子域,默认为false
*/
static init(isPosMsg?: boolean, isSon?: boolean): void;
/**
* 获取url对应的encoding值
* @param url 文件路径
* @param type 文件类型
* @return
*/
static getUrlEncode(url: string, type: string): string;
/**
* 下载文件
* @param fileUrl 文件地址(全路径)
* @param fileType 文件类型(image、text、json、xml、arraybuffer、sound、atlas、font)
* @param callBack 文件加载回调,回调内容[errorCode码(0成功,1失败,2加载进度)
* @param encoding 文件编码默认utf8,非图片文件加载需要设置相应的编码,二进制编码为空字符串
*/
static downLoadFile(fileUrl: string, fileType?: string, callBack?: Handler, encoding?: string): void;
/**
* 从本地删除文件
* @param fileUrl 文件地址(全路径)
* @param callBack 回调处理,在存储图片时用到
*/
static remove(fileUrl: string, callBack?: Handler): void;
/**
* 清空缓存空间文件内容
*/
static removeAll(): void;
/**
* 判断是否是4M包文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static hasNativeFile(fileUrl: string): boolean;
/**
* 判断缓存里是否存在文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static getFileInfo(fileUrl: string): any;
/**
* 获取缓存文件列表
* @return
*/
static getFileList(): any;
static exitMiniProgram(): void;
static pixelRatio(): number;
static createElement(type: string): any;
static createShaderCondition(conditionScript: string): Function;
/**
* 传递图集url地址到
* @param url 为绝对地址
*/
static sendAtlasToOpenDataContext(url: string): void;
/**
* 发送单张图片到开放数据域
* @param url
*/
static sendSinglePicToOpenDataContext(url: string): void;
/**
* 传递json配置数据到开放数据域
* @param url 为绝对地址
*/
static sendJsonDataToDataContext(url: string): void;
}
}
declare module laya.vv.mini {
import Handler = laya.utils.Handler;
class VVMiniAdapter {
static EnvConfig: any;
/**全局window对象**/
static window: any;
static systemInfo: any;
static isZiYu: boolean;
static isPosMsgYu: boolean;
/**是否自动缓存下载的图片跟声音文件,默认为true**/
static autoCacheFile: boolean;
/**50M缓存容量满时每次清理容量值,默认每次清理5M**/
static minClearSize: number;
/**本地资源列表**/
static nativefiles: Array<any>;
/**本地分包资源表**/
static subNativeFiles: any;
/**本地分包文件目录数组**/
static subNativeheads: Array<any>;
/**本地分包文件目录映射表**/
static subMaps: Array<any>;
static AutoCacheDownFile: boolean;
static getJson(data: string): any;
/**激活微信小游戏适配器*/
static enable(): void;
/**
* 初始化回调
* @param isPosMsg 是否需要在主域中自动将加载的文本数据自动传递到子域,默认 false
* @param isSon 是否是子域,默认为false
*/
static init(isPosMsg?: boolean, isSon?: boolean): void;
/**
* 获取url对应的encoding值
* @param url 文件路径
* @param type 文件类型
* @return
*/
static getUrlEncode(url: string, type: string): string;
/**
* 下载文件
* @param fileUrl 文件地址(全路径)
* @param fileType 文件类型(image、text、json、xml、arraybuffer、sound、atlas、font)
* @param callBack 文件加载回调,回调内容[errorCode码(0成功,1失败,2加载进度)
* @param encoding 文件编码默认utf8,非图片文件加载需要设置相应的编码,二进制编码为空字符串
*/
static downLoadFile(fileUrl: string, fileType?: string, callBack?: Handler, encoding?: string): void;
/**
* 从本地删除文件
* @param fileUrl 文件地址(全路径)
* @param callBack 回调处理,在存储图片时用到
*/
static remove(fileUrl: string, callBack?: Handler): void;
/**
* 清空缓存空间文件内容
*/
static removeAll(): void;
/**
* 判断是否是4M包文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static hasNativeFile(fileUrl: string): boolean;
/**
* 判断缓存里是否存在文件
* @param fileUrl 文件地址(全路径)
* @return
*/
static getFileInfo(fileUrl: string): any;
/**
* 获取缓存文件列表
* @return
*/
static getFileList(): any;
static exitMiniProgram(): void;
static pixelRatio(): number;
static createElement(type: string): any;
static createShaderCondition(conditionScript: string): Function;
/**
* 传递图集url地址到
* @param url 为绝对地址
*/
static sendAtlasToOpenDataContext(url: string): void;
/**
* 发送单张图片到开放数据域
* @param url
*/
static sendSinglePicToOpenDataContext(url: string): void;
/**
* 传递json配置数据到开放数据域
* @param url 为绝对地址
*/
static sendJsonDataToDataContext(url: string): void;
}
}
declare module Laya {
class MiniAdpter extends laya.wx.mini.MiniAdpter {
}
class BMiniAdapter extends laya.bd.mini.BMiniAdapter {
}
class KGMiniAdapter extends laya.mi.mini.KGMiniAdapter {
}
class QGMiniAdapter extends laya.qg.mini.QGMiniAdapter {
}
class VVMiniAdapter extends laya.vv.mini.VVMiniAdapter {
}
}