@cybermp/client-types 1.6.0 → 1.6.11
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/out/classes.d.ts +1 -1
- package/out/index.d.ts +1 -1
- package/out/precomputed/classes.d.ts +7 -3
- package/package.json +1 -1
package/out/classes.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
/// <reference path="./precomputed/index.d.ts" />
|
|
2
1
|
/// <reference path="./enums.d.ts" />
|
|
3
2
|
/// <reference path="./bitfields.d.ts" />
|
|
3
|
+
/// <reference path="./precomputed/index.d.ts" />
|
|
4
4
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
5
5
|
import * as CyberEnums from './enums'
|
|
6
6
|
import * as CyberBitfields from './bitfields'
|
package/out/index.d.ts
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
// THIS CODE IS GENERATED, PLEASE DO NOT EDIT THIS
|
|
2
|
-
/// <reference path="./precomputed/index.d.ts" />
|
|
3
2
|
/// <reference path="./enums.d.ts" />
|
|
4
3
|
/// <reference path="./bitfields.d.ts" />
|
|
5
4
|
/// <reference path="./classes.d.ts" />
|
|
5
|
+
/// <reference path="./precomputed/index.d.ts" />
|
|
6
6
|
import * as CyberEnums from './enums'
|
|
7
7
|
import * as CyberBitfields from './bitfields'
|
|
8
8
|
|
|
@@ -68,16 +68,20 @@ declare global {
|
|
|
68
68
|
"Get"<N extends keyof Map>(systemName: N): UnwrapMpClass<Map[N]>;
|
|
69
69
|
}
|
|
70
70
|
|
|
71
|
-
|
|
72
|
-
|
|
71
|
+
namespace ScriptGameInstance {
|
|
72
|
+
export function GetLoadingScreenSystem(): LoadingScreenSystem;
|
|
73
73
|
}
|
|
74
74
|
|
|
75
|
-
|
|
75
|
+
class LoadingScreenSystem {
|
|
76
76
|
GetLoadingScreenState(): CyberEnums.ELoadingScreenState;
|
|
77
77
|
GetLoadingScreenProgress(): number;
|
|
78
78
|
OnLoadingScreenStateChange(newState: CyberEnums.ELoadingScreenState): void;
|
|
79
79
|
}
|
|
80
80
|
|
|
81
|
+
interface MpClasses {
|
|
82
|
+
LoadingScreenSystem: typeof LoadingScreenSystem;
|
|
83
|
+
}
|
|
84
|
+
|
|
81
85
|
interface inkISystemRequestsHandler {
|
|
82
86
|
StartMainMenu(): void;
|
|
83
87
|
}
|