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/dist/app/base/base.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import { PublisherAppInfoStruct } from "../module/publisher/IPublisher";
|
|
2
1
|
/**
|
|
3
2
|
* 版本号
|
|
4
3
|
*/
|
|
@@ -31,14 +30,10 @@ export declare class Application {
|
|
|
31
30
|
* 注册类
|
|
32
31
|
*/
|
|
33
32
|
injects?: any[];
|
|
34
|
-
/**
|
|
35
|
-
* 自定义的App信息,debug为true时才生效。
|
|
36
|
-
*/
|
|
37
|
-
customAppInfo?: PublisherAppInfoStruct;
|
|
38
33
|
}): Promise<void>;
|
|
39
34
|
reset(): void;
|
|
40
35
|
private _resetLaunchTimes;
|
|
41
|
-
protected _injectsInternal(
|
|
36
|
+
protected _injectsInternal(): void;
|
|
42
37
|
/**
|
|
43
38
|
* 注入组件
|
|
44
39
|
* @param injects
|
package/dist/index.d.ts
CHANGED
|
@@ -17,7 +17,6 @@ export * from './app/module/native/INativeHelper';
|
|
|
17
17
|
export * from './app/module/config/ConfigHelper';
|
|
18
18
|
export * from './app/module/publisher/IPayAble';
|
|
19
19
|
export * from './app/module/publisher/PublisherManager';
|
|
20
|
-
export * from './app/module/publisher/PublisherManagerImpl';
|
|
21
20
|
export * from './app/module/publisher/IShareAble';
|
|
22
21
|
export * from './app/module/publisher/IPublisherManager';
|
|
23
22
|
export * from './app/module/publisher/IADAble';
|