keytops-game-framework 1.0.13 → 1.0.15
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/app/base/base.d.ts +1 -6
- package/dist/index.d.ts +0 -1
- package/dist/index.js +5218 -5352
- package/package.json +1 -1
- package/dist/app/module/publisher/PublisherManagerImpl.d.ts +0 -25
package/package.json
CHANGED
|
@@ -1,25 +0,0 @@
|
|
|
1
|
-
import { PublisherAppInfoStruct } from "./IPublisher";
|
|
2
|
-
import { IPublisherManager } from "./IPublisherManager";
|
|
3
|
-
/**
|
|
4
|
-
* 通用平台管理实现。
|
|
5
|
-
* 负责在通用运行时中检测平台并启用对应能力。
|
|
6
|
-
*/
|
|
7
|
-
export declare class PublisherManagerImpl extends IPublisherManager {
|
|
8
|
-
static KEY: string;
|
|
9
|
-
private _customAppInfo;
|
|
10
|
-
constructor(customAppInfo?: PublisherAppInfoStruct);
|
|
11
|
-
private _init;
|
|
12
|
-
enable(): void;
|
|
13
|
-
private _initWeb;
|
|
14
|
-
private _enableWeb;
|
|
15
|
-
private _initTT;
|
|
16
|
-
private _enableTT;
|
|
17
|
-
private _initWX;
|
|
18
|
-
private _enableWX;
|
|
19
|
-
private _initKS;
|
|
20
|
-
private _enableKS;
|
|
21
|
-
private _initMY;
|
|
22
|
-
private _enableMY;
|
|
23
|
-
private _initNative;
|
|
24
|
-
private _enableNative;
|
|
25
|
-
}
|